Added default return value for HS_Color (#13395)

This commit is contained in:
cdce8p 2018-03-23 18:22:48 +01:00 committed by Paulus Schoutsen
parent 8852e52601
commit 553920780f

View File

@ -134,7 +134,8 @@ class Light(HomeAccessory):
# Handle Color
if CHAR_SATURATION in self.chars and CHAR_HUE in self.chars:
hue, saturation = new_state.attributes.get(ATTR_HS_COLOR)
hue, saturation = new_state.attributes.get(
ATTR_HS_COLOR, (None, None))
if not self._flag[RGB_COLOR] and (
hue != self._hue or saturation != self._saturation):
self.char_hue.set_value(hue, should_callback=False)