Remove redundant type hint from core_config.py (#141989)

This commit is contained in:
Erik Montnemery 2025-04-01 12:54:24 +02:00 committed by GitHub
parent c151696357
commit 145e02769c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -581,9 +581,7 @@ class Config:
self.all_components: set[str] = set()
# Set of loaded components
self.components: _ComponentSet = _ComponentSet(
self.top_level_components, self.all_components
)
self.components = _ComponentSet(self.top_level_components, self.all_components)
# API (HTTP) server configuration
self.api: ApiConfig | None = None