diff --git a/custom_components/midea/climate.py b/custom_components/midea/climate.py index 47cd950..fc87c72 100644 --- a/custom_components/midea/climate.py +++ b/custom_components/midea/climate.py @@ -235,7 +235,7 @@ def is_on(self): async def async_set_temperature(self, **kwargs): """Set new target temperatures.""" if kwargs.get(ATTR_TEMPERATURE) is not None: - self._device.target_temperature = int(kwargs.get(ATTR_TEMPERATURE)) + self._device.target_temperature = (kwargs.get(ATTR_TEMPERATURE)) self._changed = True await self.apply_changes()