diff --git a/custom_components/irm_kmi/const.py b/custom_components/irm_kmi/const.py index e061086..ead55f2 100644 --- a/custom_components/irm_kmi/const.py +++ b/custom_components/irm_kmi/const.py @@ -3,7 +3,6 @@ from typing import Final from homeassistant.components.weather import (ATTR_CONDITION_CLEAR_NIGHT, ATTR_CONDITION_CLOUDY, - ATTR_CONDITION_EXCEPTIONAL, ATTR_CONDITION_FOG, ATTR_CONDITION_LIGHTNING_RAINY, ATTR_CONDITION_PARTLYCLOUDY, diff --git a/custom_components/irm_kmi/coordinator.py b/custom_components/irm_kmi/coordinator.py index 5a2049e..f1b8de0 100644 --- a/custom_components/irm_kmi/coordinator.py +++ b/custom_components/irm_kmi/coordinator.py @@ -302,7 +302,6 @@ class IrmKmiCoordinator(DataUpdateCoordinator): (forecast['native_templow'], forecast['native_temperature']) = \ (forecast['native_temperature'], forecast['native_templow']) - forecasts.append(forecast) if is_daytime or idx == 0: n_days += 1