mirror of
https://github.com/home-assistant/core.git
synced 2025-07-15 09:17:10 +00:00
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.
This commit is contained in:
parent
21d8ecdacd
commit
f396266c74
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user