We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4db8592 commit 1740984Copy full SHA for 1740984
homeassistant/helpers/target.py
@@ -96,10 +96,10 @@ def has_any_selector(self) -> bool:
96
class SelectedEntities:
97
"""Class to hold the selected entities."""
98
99
- # Entities that were explicitly mentioned.
+ # Entity IDs of entities that were explicitly mentioned.
100
referenced: set[str] = dataclasses.field(default_factory=set)
101
102
- # Entities that were referenced via device/area/floor/label ID.
+ # Entity IDs of entities that were referenced via device/area/floor/label ID.
103
# Should not trigger a warning when they don't exist.
104
indirectly_referenced: set[str] = dataclasses.field(default_factory=set)
105
0 commit comments