Resolve some stubtest allowlist entries by marking params as keyword-only (#12581)

This commit is contained in:
Avasam
2024-08-23 02:47:06 -04:00
committed by GitHub
parent 073b270e55
commit 53be87bbb4
6 changed files with 7 additions and 14 deletions
+2 -1
View File
@@ -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 = ...,