mirror of
https://github.com/home-assistant/core.git
synced 2025-06-25 01:21:51 +02:00
Improve typing [helpers.event] (#70891)
This commit is contained in:
@ -17,6 +17,7 @@ homeassistant.helpers.area_registry
|
||||
homeassistant.helpers.condition
|
||||
homeassistant.helpers.discovery
|
||||
homeassistant.helpers.entity_values
|
||||
homeassistant.helpers.event
|
||||
homeassistant.helpers.reload
|
||||
homeassistant.helpers.script_variables
|
||||
homeassistant.helpers.translation
|
||||
|
@ -558,7 +558,7 @@ class _TrackStateChangeFiltered:
|
||||
self._setup_entities_listener(track_states.domains, track_states.entities)
|
||||
|
||||
@property
|
||||
def listeners(self) -> dict:
|
||||
def listeners(self) -> dict[str, bool | set[str]]:
|
||||
"""State changes that will cause a re-render."""
|
||||
track_states = self._last_track_states
|
||||
return {
|
||||
@ -853,7 +853,7 @@ class _TrackTemplateResultInfo:
|
||||
)
|
||||
|
||||
@property
|
||||
def listeners(self) -> dict:
|
||||
def listeners(self) -> dict[str, bool | set[str]]:
|
||||
"""State changes that will cause a re-render."""
|
||||
assert self._track_state_changes
|
||||
return {
|
||||
|
Reference in New Issue
Block a user