1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Move core config functionality to its own module (#129065)

* Move core config functionality to its own module

* Adjust test
This commit is contained in:
Erik Montnemery
2024-10-24 13:34:51 +02:00
committed by GitHub
parent cd4aa8ccd6
commit 3e62c6ae2f
53 changed files with 1308 additions and 1284 deletions

View File

@@ -3145,7 +3145,7 @@ class Config:
async def async_update(self, **kwargs: Any) -> None:
"""Update the configuration from a dictionary."""
# pylint: disable-next=import-outside-toplevel
from .config import (
from .core_config import (
_raise_issue_if_historic_currency,
_raise_issue_if_no_country,
)