From b9992a991449a5c98af6d3f1c74b8212f13fbf55 Mon Sep 17 00:00:00 2001 From: Teagan Glenn Date: Wed, 21 Sep 2016 09:03:26 -0600 Subject: [PATCH] UOM is a list - not a string. (#3469) --- homeassistant/components/light/isy994.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/light/isy994.py b/homeassistant/components/light/isy994.py index 1387110a91a..ea6babad319 100644 --- a/homeassistant/components/light/isy994.py +++ b/homeassistant/components/light/isy994.py @@ -35,7 +35,7 @@ def setup_platform(hass, config: ConfigType, for node in isy.filter_nodes(isy.NODES, units=UOM, states=STATES): - if node.dimmable or node.uom == '51': + if node.dimmable or '51' in node.uom: devices.append(ISYLightDevice(node)) add_devices(devices)