From 04f07cecba22a6ee31ca6d7a459d646a858b8293 Mon Sep 17 00:00:00 2001 From: Jeef Date: Fri, 7 Oct 2022 10:37:00 -0600 Subject: [PATCH] IntelliFire Fan - Bug fix on off funciton (#79819) fix: Fan was double calling off as well as calling an async without an await --- homeassistant/components/intellifire/fan.py | 1 - 1 file changed, 1 deletion(-) diff --git a/homeassistant/components/intellifire/fan.py b/homeassistant/components/intellifire/fan.py index d37bef2189a..0f438569389 100644 --- a/homeassistant/components/intellifire/fan.py +++ b/homeassistant/components/intellifire/fan.py @@ -125,6 +125,5 @@ class IntellifireFan(IntellifireEntity, FanEntity): async def async_turn_off(self, **kwargs: Any) -> None: """Turn off the fan.""" - self.coordinator.control_api.fan_off() await self.entity_description.set_fn(self.coordinator.control_api, 0) await self.coordinator.async_request_refresh()