Hue: Guard for when there is no brightness (#35151)

This commit is contained in:
Paulus Schoutsen 2020-05-03 16:21:10 -07:00
parent ab2c3a2130
commit 0d8390b9df

View File

@ -259,6 +259,9 @@ class HueLight(Light):
else:
bri = self.light.state.get("bri")
if bri is None:
return bri
return hue_brightness_to_hass(bri)
@property