From 643fd864ed7f4821d6eeedf5ccad05720f63143d Mon Sep 17 00:00:00 2001 From: Shantanu Jain Date: Sat, 18 Jan 2025 18:02:47 -0800 Subject: [PATCH] icalendar: fix arg name Fixes #13406 --- stubs/icalendar/icalendar/timezone/tzp.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/icalendar/icalendar/timezone/tzp.pyi b/stubs/icalendar/icalendar/timezone/tzp.pyi index 7a2102561c60..269bdf742af9 100644 --- a/stubs/icalendar/icalendar/timezone/tzp.pyi +++ b/stubs/icalendar/icalendar/timezone/tzp.pyi @@ -23,7 +23,7 @@ class TZP: def fix_rrule_until(self, rrule: rrule, ical_rrule: vRecur) -> None: ... def create_timezone(self, timezone_component: Timezone) -> datetime.tzinfo: ... def clean_timezone_id(self, tzid: str) -> str: ... - def timezone(self, id: str) -> datetime.tzinfo | None: ... + def timezone(self, tz_id: str) -> datetime.tzinfo | None: ... def uses_pytz(self) -> bool: ... def uses_zoneinfo(self) -> bool: ... @property