mirror of
https://github.com/home-assistant/core.git
synced 2025-07-25 22:27:07 +00:00
Remove redundant type hint from core_config.py (#141989)
This commit is contained in:
parent
c151696357
commit
145e02769c
@ -581,9 +581,7 @@ class Config:
|
|||||||
self.all_components: set[str] = set()
|
self.all_components: set[str] = set()
|
||||||
|
|
||||||
# Set of loaded components
|
# Set of loaded components
|
||||||
self.components: _ComponentSet = _ComponentSet(
|
self.components = _ComponentSet(self.top_level_components, self.all_components)
|
||||||
self.top_level_components, self.all_components
|
|
||||||
)
|
|
||||||
|
|
||||||
# API (HTTP) server configuration
|
# API (HTTP) server configuration
|
||||||
self.api: ApiConfig | None = None
|
self.api: ApiConfig | None = None
|
||||||
|
Loading…
x
Reference in New Issue
Block a user