Sort integration platforms preload list (#133905)

* Sort integration platforms preload list

https://github.com/home-assistant/core/pull/133856#discussion_r1895385026

* sort

* Sort them all

---------

Co-authored-by: Franck Nijhof <frenck@frenck.nl>
pull/134569/head
J. Nick Koston 2024-12-23 12:38:59 -10:00 committed by Franck Nijhof
parent efabb82cb6
commit 2b8240746a
No known key found for this signature in database
GPG Key ID: D62583BA8AB11CA3
1 changed files with 2 additions and 2 deletions

View File

@ -65,20 +65,20 @@ _LOGGER = logging.getLogger(__name__)
# This list can be extended by calling async_register_preload_platform # This list can be extended by calling async_register_preload_platform
# #
BASE_PRELOAD_PLATFORMS = [ BASE_PRELOAD_PLATFORMS = [
"backup",
"config", "config",
"config_flow", "config_flow",
"diagnostics", "diagnostics",
"energy", "energy",
"group", "group",
"logbook",
"hardware", "hardware",
"intent", "intent",
"logbook",
"media_source", "media_source",
"recorder", "recorder",
"repairs", "repairs",
"system_health", "system_health",
"trigger", "trigger",
"backup",
] ]