Fix Tado missing await (#137364)

This commit is contained in:
Shay Levy 2025-02-04 22:13:50 +02:00 committed by Bram Kragten
parent 1a5b8cf854
commit 1c8ced2c2d

View File

@ -506,7 +506,7 @@ class TadoClimate(TadoZoneEntity, ClimateEntity):
offset,
)
self._tado.set_temperature_offset(self._device_id, offset)
await self._tado.set_temperature_offset(self._device_id, offset)
await self.coordinator.async_request_refresh()
async def async_set_temperature(self, **kwargs: Any) -> None: