diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-08-23 21:28:09 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-08-23 21:28:09 +0200 |
commit | a4003c728873bf5dc2c272653198ec5918b450d1 (patch) | |
tree | 88acbd6bf81ce4579f4cd0609b2588440981bab2 | |
parent | 36bcea7edc31ad3031d4948b6b21505069211fb0 (diff) |
quick fix for NoneType error
-rw-r--r-- | light.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -43,6 +43,7 @@ class BekenLight(LightEntity): self._connection = BekenConnection(self._address) self._connection.start_threads() self._process = Process() + self._process.start() @property def color_mode(self): |