From 34f0ec0e7b892831155589c1f2c26c9ba8ed78f3 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 17 Jan 2022 09:10:38 -0500 Subject: [PATCH] spelling: components/eafm (#64257) Co-authored-by: Josh Soref --- homeassistant/components/eafm/sensor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/eafm/sensor.py b/homeassistant/components/eafm/sensor.py index 70b9c06a50f..57a248d70e9 100644 --- a/homeassistant/components/eafm/sensor.py +++ b/homeassistant/components/eafm/sensor.py @@ -1,4 +1,4 @@ -"""Support for guages from flood monitoring API.""" +"""Support for gauges from flood monitoring API.""" from datetime import timedelta import logging @@ -48,7 +48,7 @@ async def async_setup_entry( measurements = set() async def async_update_data(): - # DataUpdateCoordinator will handle aiohttp ClientErrors and timouts + # DataUpdateCoordinator will handle aiohttp ClientErrors and timeouts async with async_timeout.timeout(30): data = await get_station(session, station_key)