Skip to content

Commit fe1ff08

Browse files
authored
Improve comments in the core config (home-assistant#154096)
1 parent 90c68f8 commit fe1ff08

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

homeassistant/core_config.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -570,12 +570,11 @@ def __init__(self, hass: HomeAssistant, config_dir: str) -> None:
570570
self.skip_pip_packages: list[str] = []
571571

572572
# Set of loaded top level components
573-
# This set is updated by _ComponentSet
574-
# and should not be modified directly
573+
# This set is updated by _ComponentSet and should not be modified directly.
575574
self.top_level_components: set[str] = set()
576575

577-
# Set of all loaded components including platform
578-
# based components
576+
# Set of all loaded components including platform based components
577+
# This set is updated by _ComponentSet and should not be modified directly.
579578
self.all_components: set[str] = set()
580579

581580
# Set of loaded components

0 commit comments

Comments
 (0)