Skip to content

Commit

Permalink
fix: ensure features remain sorted and consistent
Browse files Browse the repository at this point in the history
Signed-off-by: Felix Kaechele <felix@kaechele.ca>
  • Loading branch information
kaechele committed Oct 1, 2023
1 parent 76dabb7 commit 2c502aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/napoleon_efire/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

from .const import CONF_FEATURES, DOMAIN, LOCAL_NAME_PREFIX, UNSUPPORTED_FEATURES

AVAILABLE_FEATURES = {f.value for f in Feature if f.value not in UNSUPPORTED_FEATURES}
AVAILABLE_FEATURES = [f.value for f in Feature if f.value not in UNSUPPORTED_FEATURES]

FEATURES_SCHEMA = {
# replace selector.BooleanSelector() with bool once
Expand Down

0 comments on commit 2c502aa

Please sign in to comment.