diff --git a/custom_components/ohme/number.py b/custom_components/ohme/number.py index 06176c0..f925d20 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( - self._handle_coordinator_update, None + super()._handle_coordinator_update, None ) ) diff --git a/custom_components/ohme/time.py b/custom_components/ohme/time.py index 265a113..ed74722 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( - self._handle_coordinator_update, None + super()._handle_coordinator_update, None ) )