Add floor registry (#110741)

Co-authored-by: Paulus Schoutsen <balloob@gmail.com>
Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
This commit is contained in:
Franck Nijhof 2024-02-17 21:21:15 +01:00 committed by GitHub
parent 1ded412061
commit 4570eed6f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 1104 additions and 4 deletions

View file

@ -32,6 +32,7 @@ from .helpers import (
device_registry,
entity,
entity_registry,
floor_registry,
issue_registry,
recorder,
restore_state,
@ -301,6 +302,7 @@ async def async_load_base_functionality(hass: core.HomeAssistant) -> None:
area_registry.async_load(hass),
device_registry.async_load(hass),
entity_registry.async_load(hass),
floor_registry.async_load(hass),
issue_registry.async_load(hass),
hass.async_add_executor_job(_cache_uname_processor),
template.async_load_custom_templates(hass),