mirror of
https://github.com/home-assistant/core.git
synced 2025-07-22 20:57:21 +00:00
Removed double assignment of _attr_target_temperature_step in __init__ (#106611)
Removed double/wrong assignement of _attr_target_temperature_step into climate Init routine
This commit is contained in:
parent
40d4061fc5
commit
df97b0e945
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user