We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a0fa5de + a9124ae commit 7adaea1Copy full SHA for 7adaea1
1 file changed
status-light/sources/calendar/google.py
@@ -71,7 +71,8 @@ def get_calendar_service(self):
71
Returns the Calendar service object."""
72
creds = self.authenticate()
73
74
- service = build('calendar', 'v3', credentials=creds)
+ # 79 - Turn off cache_discovery, it's not supported with newer OAuth2 clients.
75
+ service = build('calendar', 'v3', credentials=creds, cache_discovery=False)
76
return service
77
78
def get_current_status(self):
0 commit comments