From 87cdd973d9e075af8d9974606f786f93b4979f01 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 17 Jan 2022 09:16:00 -0500 Subject: [PATCH] spelling: components/forecast_solar (#64261) Co-authored-by: Josh Soref --- homeassistant/components/forecast_solar/sensor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/forecast_solar/sensor.py b/homeassistant/components/forecast_solar/sensor.py index 6088da6e645..78335292a78 100644 --- a/homeassistant/components/forecast_solar/sensor.py +++ b/homeassistant/components/forecast_solar/sensor.py @@ -36,7 +36,7 @@ async def async_setup_entry( class ForecastSolarSensorEntity(CoordinatorEntity, SensorEntity): - """Defines a Forcast.Solar sensor.""" + """Defines a Forecast.Solar sensor.""" entity_description: ForecastSolarSensorEntityDescription @@ -47,7 +47,7 @@ class ForecastSolarSensorEntity(CoordinatorEntity, SensorEntity): coordinator: DataUpdateCoordinator, entity_description: ForecastSolarSensorEntityDescription, ) -> None: - """Initialize Forcast.Solar sensor.""" + """Initialize Forecast.Solar sensor.""" super().__init__(coordinator=coordinator) self.entity_description = entity_description self.entity_id = f"{SENSOR_DOMAIN}.{entity_description.key}"