tidy up, split into server/client

This commit is contained in:
simon 2019-03-17 16:25:52 +01:00
parent 4741960c9c
commit 3c831f02a6

View File

@ -120,7 +120,10 @@ class effectController:
# remove onControllerChangeHandler
def removeOnControllerChangeHandler(self, hander):
print("removeOnControllerChangeHandler", str(hander))
if hander in self.onControllerChangeHandler:
self.onControllerChangeHandler.remove(hander)
else:
print('\n\n -> client was never registered!')
# automaticly loads all modules from effects subdir and adds them to the list of effects if they have the BaseEffect as subclass
def getEffectsListFromDir(self):