mirror of
https://github.com/home-assistant/core.git
synced 2026-09-04 18:15:04 -05:00
Fix incorrect cast in HitachiAirToWaterHeatingZone in Overkiz (#135468)
This commit is contained in:
@@ -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)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user