Remove explicit return value from update()

This commit is contained in:
Philip Rosenberg-Watt
2018-03-23 13:48:37 -06:00
parent 69f3d56f2d
commit 7cd77708af

View File

@@ -70,7 +70,7 @@ class GoogleCalendarData(object):
service = self.calendar_service.get() service = self.calendar_service.get()
except ServerNotFoundError: except ServerNotFoundError:
_LOGGER.warning("Unable to connect to Google, using cached data") _LOGGER.warning("Unable to connect to Google, using cached data")
return False return
params = dict(DEFAULT_GOOGLE_SEARCH_PARAMS) params = dict(DEFAULT_GOOGLE_SEARCH_PARAMS)
params['timeMin'] = dt.now().isoformat('T') params['timeMin'] = dt.now().isoformat('T')