From 9ef0a8cb95addd21fc967882ba6fd6c1aa46819b Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 13 Mar 2024 18:15:19 -1000 Subject: [PATCH] Add default_config to the bootstrap pre-imports (#113263) This does not make default_config a requirement, it only preloads the python code for the integration so it does not have to be loaded when the import executor is busy. While its a tiny init file, it always ends up at the end of the line and delays startup --- homeassistant/bootstrap.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/bootstrap.py b/homeassistant/bootstrap.py index f1ccfcbdb89..416b26f01d7 100644 --- a/homeassistant/bootstrap.py +++ b/homeassistant/bootstrap.py @@ -32,6 +32,7 @@ from .components import ( api as api_pre_import, # noqa: F401 auth as auth_pre_import, # noqa: F401 config as config_pre_import, # noqa: F401 + default_config as default_config_pre_import, # noqa: F401 device_automation as device_automation_pre_import, # noqa: F401 diagnostics as diagnostics_pre_import, # noqa: F401 file_upload as file_upload_pre_import, # noqa: F401