Skip to content
Snippets Groups Projects
Commit 940577e1 authored by Albert Lee's avatar Albert Lee Committed by Paulus Schoutsen
Browse files

Fix binary_sensor.skybell state update when there are no events (#14927)

parent c9174708
No related branches found
No related tags found
No related merge requests found
......@@ -94,4 +94,4 @@ class SkybellBinarySensor(SkybellDevice, BinarySensorDevice):
self._state = bool(event and event.get('id') != self._event.get('id'))
self._event = event
self._event = event or {}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment