mirror of
https://github.com/home-assistant/core.git
synced 2025-04-24 01:08:12 +00:00
Fix incorrect cast in HitachiAirToWaterHeatingZone in Overkiz (#135468)
This commit is contained in:
parent
25041aa02d
commit
c15073cc27
@ -119,5 +119,5 @@ class HitachiAirToWaterHeatingZone(OverkizEntity, ClimateEntity):
|
||||
temperature = cast(float, kwargs.get(ATTR_TEMPERATURE))
|
||||
|
||||
await self.executor.async_execute_command(
|
||||
OverkizCommand.SET_THERMOSTAT_SETTING_CONTROL_ZONE_1, int(temperature)
|
||||
OverkizCommand.SET_THERMOSTAT_SETTING_CONTROL_ZONE_1, float(temperature)
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user