summaryrefslogtreecommitdiff
path: root/poezio/events.py
diff options
context:
space:
mode:
Diffstat (limited to 'poezio/events.py')
-rw-r--r--poezio/events.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/events.py b/poezio/events.py
index 5213f663..63782836 100644
--- a/poezio/events.py
+++ b/poezio/events.py
@@ -48,7 +48,7 @@ class EventHandler:
'ignored_private',
'tab_change',
]
- self.events = {} # type: Dict[str, OrderedDict[int, List[Callable]]]
+ self.events: Dict[str, OrderedDict[int, List[Callable]]] = {}
for event in events:
self.events[event] = OrderedDict()