Skip to content

Commit

Permalink
fix: extend allowed force interval to 9999 minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
cdnninja authored Nov 16, 2023
1 parent d84d595 commit faafa80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/kia_uvo/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def __init__(self, config_entry: ConfigEntry) -> None:
default=self.config_entry.options.get(
CONF_FORCE_REFRESH_INTERVAL, DEFAULT_FORCE_REFRESH_INTERVAL
),
): vol.All(vol.Coerce(int), vol.Range(min=90, max=999)),
): vol.All(vol.Coerce(int), vol.Range(min=90, max=9999)),
vol.Required(
CONF_NO_FORCE_REFRESH_HOUR_START,
default=self.config_entry.options.get(
Expand Down

0 comments on commit faafa80

Please sign in to comment.