mirror of
https://github.com/home-assistant/core.git
synced 2025-08-06 14:15:12 +02:00
Fix missing type annotation in bring (#137647)
This commit is contained in:
@@ -103,6 +103,6 @@ class BringEventEntity(BringBaseEntity, EventEntity):
|
|||||||
await super().async_added_to_hass()
|
await super().async_added_to_hass()
|
||||||
self._async_handle_event()
|
self._async_handle_event()
|
||||||
|
|
||||||
def _handle_coordinator_update(self):
|
def _handle_coordinator_update(self) -> None:
|
||||||
self._async_handle_event()
|
self._async_handle_event()
|
||||||
return super()._handle_coordinator_update()
|
return super()._handle_coordinator_update()
|
||||||
|
Reference in New Issue
Block a user