mirror of
https://github.com/home-assistant/core.git
synced 2025-07-21 04:07:08 +00:00
Fix missing type annotation in bring (#137647)
This commit is contained in:
parent
448a24802d
commit
2639a3bce8
@ -103,6 +103,6 @@ class BringEventEntity(BringBaseEntity, EventEntity):
|
||||
await super().async_added_to_hass()
|
||||
self._async_handle_event()
|
||||
|
||||
def _handle_coordinator_update(self):
|
||||
def _handle_coordinator_update(self) -> None:
|
||||
self._async_handle_event()
|
||||
return super()._handle_coordinator_update()
|
||||
|
Loading…
x
Reference in New Issue
Block a user