fixed signature for init on callbacks

also removed passing display to base class which already handles this
This commit is contained in:
Brian Coca 2015-12-01 13:28:16 -08:00
parent e1bcb43e76
commit 3e01516783
7 changed files with 14 additions and 14 deletions

View file

@ -16,9 +16,9 @@ class CallbackModule(CallbackBase):
CALLBACK_NAME = 'timer'
CALLBACK_NEEDS_WHITELIST = True
def __init__(self, display):
def __init__(self):
super(CallbackModule, self).__init__(display)
super(CallbackModule, self).__init__()
self.start_time = datetime.now()