Remove deprecated hass.helpers (#143514)

This commit is contained in:
Robert Resch
2025-04-23 17:24:25 +02:00
committed by GitHub
parent 731d1ab796
commit 199a274c80
4 changed files with 4 additions and 94 deletions

View File

@ -427,9 +427,6 @@ class HomeAssistant:
def __init__(self, config_dir: str) -> None:
"""Initialize new Home Assistant object."""
# pylint: disable-next=import-outside-toplevel
from . import loader
# pylint: disable-next=import-outside-toplevel
from .core_config import Config
@ -443,7 +440,6 @@ class HomeAssistant:
self.states = StateMachine(self.bus, self.loop)
self.config = Config(self, config_dir)
self.config.async_initialize()
self.helpers = loader.Helpers(self)
self.state: CoreState = CoreState.not_running
self.exit_code: int = 0
# If not None, use to signal end-of-loop