From 0c03f099ab4775547a3f153bbd07f99196bec726 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 25 Nov 2022 11:29:30 +0000 Subject: [PATCH] Bump caldav to 0.11.* (#9253) Co-authored-by: AlexWaygood --- stubs/caldav/METADATA.toml | 2 +- stubs/caldav/caldav/objects.pyi | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/stubs/caldav/METADATA.toml b/stubs/caldav/METADATA.toml index 7da23f6bc..6b8f4f006 100644 --- a/stubs/caldav/METADATA.toml +++ b/stubs/caldav/METADATA.toml @@ -1,3 +1,3 @@ -version = "0.10.*" +version = "0.11.*" # also types-lxml and types-icalendar when those stubs are added requires = ["types-requests", "types-vobject"] diff --git a/stubs/caldav/caldav/objects.pyi b/stubs/caldav/caldav/objects.pyi index c87789049..ae9520598 100644 --- a/stubs/caldav/caldav/objects.pyi +++ b/stubs/caldav/caldav/objects.pyi @@ -115,6 +115,7 @@ class Calendar(DAVObject): todo: bool | None = ..., include_completed: bool = ..., sort_keys: Sequence[str] = ..., + split_expanded: bool = ..., **kwargs, ) -> list[CalendarObjectResource]: ... @overload @@ -125,6 +126,7 @@ class Calendar(DAVObject): todo: bool | None = ..., include_completed: bool = ..., sort_keys: Sequence[str] = ..., + split_expanded: bool = ..., **kwargs, ) -> list[_CC]: ... @overload @@ -135,6 +137,7 @@ class Calendar(DAVObject): todo: bool | None = ..., include_completed: bool = ..., sort_keys: Sequence[str] = ..., + split_expanded: bool = ..., **kwargs, ) -> list[_CC]: ... def build_search_xml_query( @@ -206,6 +209,8 @@ class CalendarObjectResource(DAVObject): props: Any | None = ..., ) -> None: ... def add_organizer(self) -> None: ... + def split_expanded(self: Self) -> list[Self]: ... + def expand_rrule(self, start: datetime.datetime, end: datetime.datetime) -> None: ... def add_attendee(self, attendee, no_default_parameters: bool = ..., **parameters) -> None: ... def is_invite_request(self) -> bool: ... def accept_invite(self, calendar: Any | None = ...) -> None: ...