Why are you a thread?

This commit is contained in:
simon 2019-05-04 14:36:46 +02:00
parent 49ac031253
commit babf6f676b

View File

@ -2,9 +2,9 @@ from rgbUtils.RGBStrip import RGBStrip
import time import time
import threading import threading
import json import json
class rgbStripController(threading.Thread): class rgbStripController():
def __init__(self): def __init__(self):
threading.Thread.__init__(self) #threading.Thread.__init__(self)
self.rgbStrips = [] self.rgbStrips = []
self.onRGBStripRegisteredHandler = [] self.onRGBStripRegisteredHandler = []
self.onRGBStripUnRegisteredHandler = [] self.onRGBStripUnRegisteredHandler = []