From c508ba166c8fa356d91a0f8323058d21f52b0b36 Mon Sep 17 00:00:00 2001 From: starkillerOG <starkiller.og@gmail.com> Date: Thu, 24 Jan 2019 23:46:55 +0100 Subject: [PATCH] Philips Hue - Remove unnessesary warning (#20394) for white hue bulbs and bulbs from other brands like Ikea and Innr, this warning will be issued while this is not really a problem. So just remove the warning. --- homeassistant/components/hue/light.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/homeassistant/components/hue/light.py b/homeassistant/components/hue/light.py index 7a1449e00c6..89b731cb0e5 100644 --- a/homeassistant/components/hue/light.py +++ b/homeassistant/components/hue/light.py @@ -228,9 +228,6 @@ class HueLight(Light): self.is_philips = light.manufacturername == 'Philips' self.gamut_typ = self.light.colorgamuttype self.gamut = self.light.colorgamut - if not self.gamut: - err_msg = 'Can not get color gamut of light "%s"' - _LOGGER.warning(err_msg, self.name) @property def unique_id(self): -- GitLab