From 9c9fa116549eef9aa3c89e7c17146561c832892f Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Mon, 12 Feb 2024 10:21:43 +0100 Subject: [PATCH] Fix color mode in hive light (#110330) --- homeassistant/components/hive/light.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/hive/light.py b/homeassistant/components/hive/light.py index a340aee0764..d173751c6c8 100644 --- a/homeassistant/components/hive/light.py +++ b/homeassistant/components/hive/light.py @@ -54,6 +54,7 @@ class HiveDeviceLight(HiveEntity, LightEntity): self._attr_color_mode = ColorMode.COLOR_TEMP elif self.device["hiveType"] == "colourtuneablelight": self._attr_supported_color_modes = {ColorMode.COLOR_TEMP, ColorMode.HS} + self._attr_color_mode = ColorMode.UNKNOWN self._attr_min_mireds = 153 self._attr_max_mireds = 370