mirror of
https://github.com/home-assistant/core.git
synced 2025-08-05 21:55:10 +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()
|
||||
self._async_handle_event()
|
||||
|
||||
def _handle_coordinator_update(self):
|
||||
def _handle_coordinator_update(self) -> None:
|
||||
self._async_handle_event()
|
||||
return super()._handle_coordinator_update()
|
||||
|
Reference in New Issue
Block a user