1
mirror of https://github.com/home-assistant/core synced 2024-10-01 05:30:36 +02:00

Don't set force bool during set_humidity (#80269)

This commit is contained in:
Nolan Gilley 2022-10-26 06:43:06 -04:00 committed by GitHub
parent 9715b6c862
commit d5a2484076
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -282,7 +282,7 @@ class GenericHygrostat(HumidifierEntity, RestoreEntity):
return
self._target_humidity = humidity
await self._async_operate(force=True)
await self._async_operate()
await self.async_update_ha_state()
@property