From 239dfaba4be3235ff85de2b7d721c69e7bc9fcd4 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Tue, 18 Feb 2020 12:09:56 -0800 Subject: [PATCH] Do not use a set for hvac modes in SmartThings (#31959) --- homeassistant/components/smartthings/climate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/smartthings/climate.py b/homeassistant/components/smartthings/climate.py index 19a9e20cd6b..232540ee47b 100644 --- a/homeassistant/components/smartthings/climate.py +++ b/homeassistant/components/smartthings/climate.py @@ -406,7 +406,7 @@ class SmartThingsAirConditioner(SmartThingsEntity, ClimateDevice): self._device.device_id, mode, ) - self._hvac_modes = modes + self._hvac_modes = list(modes) @property def current_temperature(self):