mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-19 06:49:44 +08:00
Resolve some stubtest allowlist entries by marking params as keyword-only (#12581)
This commit is contained in:
@@ -58,9 +58,10 @@ class DAVClient:
|
||||
def __exit__(
|
||||
self, exc_type: type[BaseException] | None, exc_value: BaseException | None, traceback: TracebackType | None
|
||||
) -> None: ...
|
||||
def principal(self, *, url: str | ParseResult | SplitResult | URL | None = ...) -> Principal: ...
|
||||
def principal(self, *, url: str | ParseResult | SplitResult | URL | None = None) -> Principal: ...
|
||||
def calendar(
|
||||
self,
|
||||
*,
|
||||
url: str | ParseResult | SplitResult | URL | None = ...,
|
||||
parent: DAVObject | None = ...,
|
||||
name: str | None = ...,
|
||||
|
||||
Reference in New Issue
Block a user