From 7cd77708af658ccea855de47a32ce4ac5262ac30 Mon Sep 17 00:00:00 2001 From: Philip Rosenberg-Watt Date: Fri, 23 Mar 2018 13:48:37 -0600 Subject: [PATCH] Remove explicit return value from update() --- homeassistant/components/calendar/google.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/calendar/google.py b/homeassistant/components/calendar/google.py index 39e18abcf9b..9ac7adbd171 100644 --- a/homeassistant/components/calendar/google.py +++ b/homeassistant/components/calendar/google.py @@ -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')