From 194db0d0cf6610157db6cb756dfcff7adb0565e1 Mon Sep 17 00:00:00 2001 From: Edwin ten Haaf Date: Thu, 19 Dec 2024 08:10:44 +0100 Subject: [PATCH] fix for 'It's not possible to set regulation mode to Expert using Automations' --- custom_components/versatile_thermostat/climate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/versatile_thermostat/climate.py b/custom_components/versatile_thermostat/climate.py index 941bb8f..4fc586e 100644 --- a/custom_components/versatile_thermostat/climate.py +++ b/custom_components/versatile_thermostat/climate.py @@ -118,7 +118,7 @@ async def async_setup_entry( SERVICE_SET_AUTO_REGULATION_MODE, { vol.Required("auto_regulation_mode"): vol.In( - ["None", "Light", "Medium", "Strong", "Slow"] + ["None", "Light", "Medium", "Strong", "Slow", "Expert"] ), }, "service_set_auto_regulation_mode",