diff --git a/custom_components/ohme/number.py b/custom_components/ohme/number.py index f925d20..8e1963b 100644 --- a/custom_components/ohme/number.py +++ b/custom_components/ohme/number.py @@ -48,7 +48,7 @@ async def async_added_to_hass(self) -> None: await super().async_added_to_hass() self.async_on_remove( self.coordinator_schedules.async_add_listener( - super()._handle_coordinator_update, None + None, None ) ) diff --git a/custom_components/ohme/time.py b/custom_components/ohme/time.py index ed74722..590fc21 100644 --- a/custom_components/ohme/time.py +++ b/custom_components/ohme/time.py @@ -51,7 +51,7 @@ async def async_added_to_hass(self) -> None: await super().async_added_to_hass() self.async_on_remove( self.coordinator_schedules.async_add_listener( - super()._handle_coordinator_update, None + None, None ) )