From 0c7324270f1c4a3ded57759f5736746ea352bc2d Mon Sep 17 00:00:00 2001 From: cdnninja Date: Fri, 8 Sep 2023 13:10:44 -0600 Subject: [PATCH] fix: further reduce min force scan --- custom_components/kia_uvo/config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/kia_uvo/config_flow.py b/custom_components/kia_uvo/config_flow.py index 978f77ae..40425046 100644 --- a/custom_components/kia_uvo/config_flow.py +++ b/custom_components/kia_uvo/config_flow.py @@ -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=45, max=999)), + ): vol.All(vol.Coerce(int), vol.Range(min=90, max=999)), vol.Required( CONF_NO_FORCE_REFRESH_HOUR_START, default=self.config_entry.options.get(