We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f6969c commit 3db00f9Copy full SHA for 3db00f9
zulip/integrations/google/google-calendar
@@ -44,10 +44,10 @@ class GoogleCalendarOptions:
44
45
46
# Our cached view of the calendar, updated periodically.
47
-events: List[Tuple[int, datetime.datetime, str]] = []
+events: List[Tuple[str, datetime.datetime, str]] = []
48
49
# Unique keys for events we've already sent, so we don't remind twice.
50
-sent: Set[Tuple[int, datetime.datetime]] = set()
+sent: Set[Tuple[str, datetime.datetime]] = set()
51
52
sys.path.append(os.path.dirname(__file__))
53
0 commit comments