diff --git a/homeassistant/bootstrap.py b/homeassistant/bootstrap.py index 68f1266317a..446fe73f926 100644 --- a/homeassistant/bootstrap.py +++ b/homeassistant/bootstrap.py @@ -37,6 +37,7 @@ from .components import ( history as history_pre_import, # noqa: F401 http, # not named pre_import since it has requirements image_upload as image_upload_import, # noqa: F401 - not named pre_import since it has requirements + logbook as logbook_pre_import, # noqa: F401 lovelace as lovelace_pre_import, # noqa: F401 onboarding as onboarding_pre_import, # noqa: F401 recorder as recorder_import, # noqa: F401 - not named pre_import since it has requirements @@ -47,6 +48,7 @@ from .components import ( webhook as webhook_pre_import, # noqa: F401 websocket_api as websocket_api_pre_import, # noqa: F401 ) +from .components.sensor import recorder as sensor_recorder # noqa: F401 from .const import ( FORMAT_DATETIME, KEY_DATA_LOGGING as DATA_LOGGING,