diff --git a/stubs/caldav/caldav/objects.pyi b/stubs/caldav/caldav/objects.pyi index 989110dc1..d30ee12d3 100644 --- a/stubs/caldav/caldav/objects.pyi +++ b/stubs/caldav/caldav/objects.pyi @@ -91,14 +91,20 @@ class Calendar(DAVObject): end: datetime.datetime | None = ..., compfilter: Literal["VEVENT"] = ..., expand: bool | Literal["maybe"] = ..., + verify_expand: bool = ..., ) -> list[Event]: ... @overload def date_search( - self, start: datetime.datetime, *, compfilter: None, expand: bool | Literal["maybe"] = ... + self, start: datetime.datetime, *, compfilter: None, expand: bool | Literal["maybe"] = ..., verify_expand: bool = ... ) -> list[CalendarObjectResource]: ... @overload def date_search( - self, start: datetime.datetime, end: datetime.datetime | None, compfilter: None, expand: bool | Literal["maybe"] = ... + self, + start: datetime.datetime, + end: datetime.datetime | None, + compfilter: None, + expand: bool | Literal["maybe"] = ..., + verify_expand: bool = ..., ) -> list[CalendarObjectResource]: ... @overload def search(self, xml, comp_class: None = ...) -> list[CalendarObjectResource]: ...