from tfw.event_handlers import EventHandlerBase from tfw.networking import Scope from .tfw_server_connector import TFWServerConnector class EventHandler(EventHandlerBase): # pylint: disable=abstract-method def __init__(self, key, scope=Scope.ZMQ): super().__init__(key, TFWServerConnector(), scope=scope)