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:
CR-Tech 2024-01-03 13:44:14 +01:00 committed by GitHub
parent 40d4061fc5
commit df97b0e945
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: