aboutsummaryrefslogtreecommitdiff
path: root/src/Timers.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-06-26 11:01:09 +0100
committerGravatar jesopo2019-06-26 11:01:09 +0100
commitbb749b111f75d894431b04da6307c86549ad4b50 (patch)
tree1d1851ab99b6edf65ed4115c1f13897540610e8d /src/Timers.py
parentSwitch all 'hook.kwargs.get(' calls to 'hook.get_kwarg(' (diff)
signature
Refactor EventManager to only hold hooks on a root object
Diffstat (limited to 'src/Timers.py')
-rw-r--r--src/Timers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Timers.py b/src/Timers.py
index 88cceeed..c371038d 100644
--- a/src/Timers.py
+++ b/src/Timers.py
@@ -32,7 +32,7 @@ class Timer(object):
class Timers(object):
def __init__(self, database: Database.Database,
- events: EventManager.EventHook,
+ events: EventManager.Events,
log: Logging.Log):
self.database = database
self.events = events