mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-18 14:29:47 +08:00
Remove bare Incomplete annotations in third-party stubs (#11671)
This commit is contained in:
@@ -66,7 +66,7 @@ class DAVClient:
|
||||
name: str | None = ...,
|
||||
id: str | None = ...,
|
||||
props: Mapping[Incomplete, Incomplete] = ...,
|
||||
**extra: Incomplete,
|
||||
**extra,
|
||||
) -> Calendar: ...
|
||||
def check_dav_support(self) -> str | None: ...
|
||||
def check_cdav_support(self) -> bool: ...
|
||||
|
||||
@@ -33,7 +33,7 @@ class DAVObject:
|
||||
name: str | None = None,
|
||||
id: str | None = None,
|
||||
props: Mapping[Incomplete, Incomplete] | None = None,
|
||||
**extra: Incomplete,
|
||||
**extra,
|
||||
) -> None: ...
|
||||
@property
|
||||
def canonical_url(self) -> str: ...
|
||||
@@ -70,14 +70,10 @@ class Principal(DAVObject):
|
||||
class Calendar(DAVObject):
|
||||
def get_supported_components(self) -> list[Incomplete]: ...
|
||||
def save_with_invites(self, ical: str, attendees, **attendeeoptions) -> None: ...
|
||||
def save_event(
|
||||
self, ical: str | None = None, no_overwrite: bool = False, no_create: bool = False, **ical_data: Incomplete
|
||||
) -> Event: ...
|
||||
def save_todo(
|
||||
self, ical: str | None = None, no_overwrite: bool = False, no_create: bool = False, **ical_data: Incomplete
|
||||
) -> Todo: ...
|
||||
def save_event(self, ical: str | None = None, no_overwrite: bool = False, no_create: bool = False, **ical_data) -> Event: ...
|
||||
def save_todo(self, ical: str | None = None, no_overwrite: bool = False, no_create: bool = False, **ical_data) -> Todo: ...
|
||||
def save_journal(
|
||||
self, ical: str | None = None, no_overwrite: bool = False, no_create: bool = False, **ical_data: Incomplete
|
||||
self, ical: str | None = None, no_overwrite: bool = False, no_create: bool = False, **ical_data
|
||||
) -> Journal: ...
|
||||
add_event = save_event
|
||||
add_todo = save_todo
|
||||
|
||||
Reference in New Issue
Block a user