From 57ab296d8adf717c23c7d51026cf881f1ae5561a Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sun, 16 Jan 2022 15:23:43 -1000 Subject: [PATCH] Fix duplicate code in nexia climate platform (#64220) --- homeassistant/components/nexia/climate.py | 1 - 1 file changed, 1 deletion(-) diff --git a/homeassistant/components/nexia/climate.py b/homeassistant/components/nexia/climate.py index b99e94d3abc..7a46fd5719e 100644 --- a/homeassistant/components/nexia/climate.py +++ b/homeassistant/components/nexia/climate.py @@ -190,7 +190,6 @@ class NexiaZone(NexiaThermostatZoneEntity, ClimateEntity): self._attr_max_temp = max_setpoint self._attr_temperature_unit = TEMP_CELSIUS if unit == "C" else TEMP_FAHRENHEIT self._attr_target_temperature_step = 0.5 if unit == "C" else 1.0 - self._attr_preset_modes = self._zone.get_presets() @property def is_fan_on(self):