Skip to content

Commit 1740984

Browse files
authored
Improve comments in SelectedEntities (home-assistant#152540)
1 parent 4db8592 commit 1740984

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

homeassistant/helpers/target.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ def has_any_selector(self) -> bool:
9696
class SelectedEntities:
9797
"""Class to hold the selected entities."""
9898

99-
# Entities that were explicitly mentioned.
99+
# Entity IDs of entities that were explicitly mentioned.
100100
referenced: set[str] = dataclasses.field(default_factory=set)
101101

102-
# Entities that were referenced via device/area/floor/label ID.
102+
# Entity IDs of entities that were referenced via device/area/floor/label ID.
103103
# Should not trigger a warning when they don't exist.
104104
indirectly_referenced: set[str] = dataclasses.field(default_factory=set)
105105

0 commit comments

Comments
 (0)