From df97b0e945c8d6334b86a2b5102168a1149dda5e Mon Sep 17 00:00:00 2001 From: CR-Tech <41435902+crug80@users.noreply.github.com> Date: Wed, 3 Jan 2024 13:44:14 +0100 Subject: [PATCH] Removed double assignment of _attr_target_temperature_step in __init__ (#106611) Removed double/wrong assignement of _attr_target_temperature_step into climate Init routine --- homeassistant/components/modbus/climate.py | 1 - 1 file changed, 1 deletion(-) diff --git a/homeassistant/components/modbus/climate.py b/homeassistant/components/modbus/climate.py index 76132014413..aa345324dc8 100644 --- a/homeassistant/components/modbus/climate.py +++ b/homeassistant/components/modbus/climate.py @@ -125,7 +125,6 @@ class ModbusThermostat(BaseStructPlatform, RestoreEntity, ClimateEntity): ) self._attr_min_temp = config[CONF_MIN_TEMP] self._attr_max_temp = config[CONF_MAX_TEMP] - self._attr_target_temperature_step = config[CONF_TARGET_TEMP] self._attr_target_temperature_step = config[CONF_STEP] if CONF_HVAC_MODE_REGISTER in config: