1
mirror of https://github.com/home-assistant/core synced 2024-07-21 14:24:50 +02:00

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()
except ServerNotFoundError:
_LOGGER.warning("Unable to connect to Google, using cached data")
return False
return
params = dict(DEFAULT_GOOGLE_SEARCH_PARAMS)
params['timeMin'] = dt.now().isoformat('T')