Fix missing await in nexia emergency heat (#82207)

fixes undefined
This commit is contained in:
J. Nick Koston 2022-11-16 12:02:09 -06:00 committed by GitHub
parent 08398370c5
commit 7ce6600f69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -378,7 +378,7 @@ class NexiaZone(NexiaThermostatZoneEntity, ClimateEntity):
async def async_turn_aux_heat_on(self) -> None:
"""Turn Aux Heat on."""
self._thermostat.set_emergency_heat(True)
await self._thermostat.set_emergency_heat(True)
self._signal_thermostat_update()
async def async_turn_off(self) -> None: