From a4003c728873bf5dc2c272653198ec5918b450d1 Mon Sep 17 00:00:00 2001 From: lonkaars Date: Tue, 23 Aug 2022 21:28:09 +0200 Subject: quick fix for NoneType error --- light.py | 1 + 1 file changed, 1 insertion(+) 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): -- cgit v1.2.3