diff --git a/custom_components/better_thermostat/utils/const.py b/custom_components/better_thermostat/utils/const.py index 5e46d26c..09b25b1a 100644 --- a/custom_components/better_thermostat/utils/const.py +++ b/custom_components/better_thermostat/utils/const.py @@ -55,7 +55,11 @@ CONF_NO_SYSTEM_MODE_OFF = "no_off_system_mode" CONF_TOLERANCE = "tolerance" CONF_TARGET_TEMP_STEP = "target_temp_step" -SUPPORT_FLAGS = ClimateEntityFeature.TARGET_TEMPERATURE | ClimateEntityFeature.TURN_OFF | ClimateEntityFeature.TURN_ON +SUPPORT_FLAGS = ( + ClimateEntityFeature.TARGET_TEMPERATURE + | ClimateEntityFeature.TURN_OFF + | ClimateEntityFeature.TURN_ON +) ATTR_STATE_WINDOW_OPEN = "window_open" ATTR_STATE_CALL_FOR_HEAT = "call_for_heat"