Skip to content

Commit

Permalink
auto-load preferences (esphome#7642)
Browse files Browse the repository at this point in the history
Co-authored-by: Samuel Sieb <[email protected]>
  • Loading branch information
ssieb and Samuel Sieb authored Oct 21, 2024
1 parent f7543a7 commit 6575276
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion esphome/components/host/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from .gpio import host_pin_to_code # noqa

CODEOWNERS = ["@esphome/core", "@clydebarrow"]
AUTO_LOAD = ["network"]
AUTO_LOAD = ["network", "preferences"]


def set_core_data(config):
Expand Down
2 changes: 1 addition & 1 deletion esphome/components/libretiny/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

_LOGGER = logging.getLogger(__name__)
CODEOWNERS = ["@kuba2k2"]
AUTO_LOAD = []
AUTO_LOAD = ["preferences"]


def _detect_variant(value):
Expand Down
2 changes: 1 addition & 1 deletion esphome/components/rp2040/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

_LOGGER = logging.getLogger(__name__)
CODEOWNERS = ["@jesserockz"]
AUTO_LOAD = []
AUTO_LOAD = ["preferences"]


def set_core_data(config):
Expand Down

0 comments on commit 6575276

Please sign in to comment.