Fix Tado missing await (#137364)

This commit is contained in:
Shay Levy 2025-02-04 22:13:50 +02:00 committed by GitHub
parent b8d74a11ae
commit d99305513c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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: