From eec1dafe11c16bdd70e9f07f3a60d5f400050655 Mon Sep 17 00:00:00 2001 From: Joost Lekkerkerker Date: Mon, 29 Apr 2024 16:58:02 +0200 Subject: [PATCH] Fix typo in Switchbot cloud (#116388) --- homeassistant/components/switchbot_cloud/climate.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/components/switchbot_cloud/climate.py b/homeassistant/components/switchbot_cloud/climate.py index d184063939a..e04145933ae 100644 --- a/homeassistant/components/switchbot_cloud/climate.py +++ b/homeassistant/components/switchbot_cloud/climate.py @@ -47,13 +47,13 @@ async def async_setup_entry( """Set up SwitchBot Cloud entry.""" data: SwitchbotCloudData = hass.data[DOMAIN][config.entry_id] async_add_entities( - SwitchBotCloudAirConditionner(data.api, device, coordinator) + SwitchBotCloudAirConditioner(data.api, device, coordinator) for device, coordinator in data.devices.climates ) -class SwitchBotCloudAirConditionner(SwitchBotCloudEntity, ClimateEntity): - """Representation of a SwitchBot air conditionner. +class SwitchBotCloudAirConditioner(SwitchBotCloudEntity, ClimateEntity): + """Representation of a SwitchBot air conditioner. As it is an IR device, we don't know the actual state. """