Skip to content

Commit

Permalink
Make experimental in config flow false by default (#3166)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus committed Jun 17, 2023
1 parent c5e3cf1 commit a5164a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/hacs/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ async def _show_config_form(self, user_input):
): bool,
vol.Required("acc_disable", default=user_input.get("acc_disable", False)): bool,
vol.Optional(
"experimental", default=user_input.get("experimental", True)
"experimental", default=user_input.get("experimental", False)
): bool,
}
),
Expand Down

0 comments on commit a5164a6

Please sign in to comment.