Skip to content

Commit

Permalink
Fix inheritance error
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-r committed Jan 3, 2024
1 parent 3638472 commit 77502e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/ohme/number.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
)

Expand Down
2 changes: 1 addition & 1 deletion custom_components/ohme/time.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
)

Expand Down

0 comments on commit 77502e7

Please sign in to comment.