From b49b272300db255761896eda8e1553433df64dc1 Mon Sep 17 00:00:00 2001 From: Artem Belyakov <43389005+belyakov-am@users.noreply.github.com> Date: Sun, 23 Jan 2022 14:46:51 +0300 Subject: [PATCH] FIX: replace undefined calendarID variable --- Notion-GCal-2WaySync-Public.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Notion-GCal-2WaySync-Public.py b/Notion-GCal-2WaySync-Public.py index ed17190..26321b9 100644 --- a/Notion-GCal-2WaySync-Public.py +++ b/Notion-GCal-2WaySync-Public.py @@ -123,7 +123,7 @@ def googleQuery(): # result = service.calendarList().list().execute() # print(result['items'][:]) - calendar = service.calendars().get(calendarId=calendarID).execute() + calendar = service.calendars().get(calendarId=DEFAULT_CALENDAR_ID).execute()