Component deconz: Fix dark attribute on presence sensors (#12691)

pydeconz changed PRESENCE to be an array in v25, so this code hasn't worked since that change.
pull/12739/head
tumik 2018-02-27 08:44:57 +02:00 committed by Paulus Schoutsen
parent 21d8ecdacd
commit f396266c74
1 changed files with 1 additions and 1 deletions

View File

@ -99,6 +99,6 @@ class DeconzBinarySensor(BinarySensorDevice):
attr = {
ATTR_BATTERY_LEVEL: self._sensor.battery,
}
if self._sensor.type == PRESENCE:
if self._sensor.type in PRESENCE:
attr['dark'] = self._sensor.dark
return attr