aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-08-23 21:28:09 +0200
committerlonkaars <loek@pipeframe.xyz>2022-08-23 21:28:09 +0200
commita4003c728873bf5dc2c272653198ec5918b450d1 (patch)
tree88acbd6bf81ce4579f4cd0609b2588440981bab2
parent36bcea7edc31ad3031d4948b6b21505069211fb0 (diff)
quick fix for NoneType error
-rw-r--r--light.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/light.py b/light.py
index 3c70f23..75a8c20 100644
--- a/light.py
+++ b/light.py
@@ -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):