Fix missing type annotation in bring (#137647)

This commit is contained in:
epenet 2025-02-07 10:08:50 +01:00 committed by GitHub
parent 448a24802d
commit 2639a3bce8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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()