Common: Fix type hint for IEventQueue.subscribe_type()

This commit is contained in:
Mike Salvatore 2022-08-10 11:35:55 -04:00
parent d151ce12fd
commit 83e09ca957
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
from abc import ABC, abstractmethod
from typing import Callable
from typing import Callable, Type
from common.events import AbstractEvent
@ -21,7 +21,7 @@ class IEventQueue(ABC):
@abstractmethod
def subscribe_type(
self, event_type: AbstractEvent, subscriber: Callable[[AbstractEvent], None]
self, event_type: Type[AbstractEvent], subscriber: Callable[[AbstractEvent], None]
):
"""
Subscribes a subscriber to the specifed event type