Fix type hint

This commit is contained in:
Christophe Bedard 2019-12-31 20:18:41 -05:00
parent e9705a71ab
commit 4070057047

View file

@ -139,7 +139,7 @@ class EventHandler(Dependant):
return None
@property
def processor(self) -> Processor:
def processor(self) -> 'Processor':
return self._processor
@staticmethod