From c456b4c646110c7445be7c3c57cc913a1a22e9d4 Mon Sep 17 00:00:00 2001 From: Allen Porter Date: Mon, 28 Feb 2022 09:52:52 -0800 Subject: [PATCH] Fix google calendar comment typo (#67389) --- homeassistant/components/google/calendar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/google/calendar.py b/homeassistant/components/google/calendar.py index d49ec48fe82..282c80988e4 100644 --- a/homeassistant/components/google/calendar.py +++ b/homeassistant/components/google/calendar.py @@ -154,7 +154,7 @@ class GoogleCalendarEventDevice(CalendarEventDevice): _LOGGER.error("Unable to connect to Google: %s", err) return - # Pick the first visible evemt. Make a copy since calculate_offset mutates the event + # Pick the first visible event. Make a copy since calculate_offset mutates the event valid_items = filter(self._event_filter, items) self._event = copy.deepcopy(next(valid_items, None)) if self._event: