baseimage-tutorial-framework/tfw/main/event_handler_factory.py

9 lines
222 B
Python

from tfw.internals.event_handling import EventHandlerFactoryBase
from .tfw_connector import TFWConnector
class EventHandlerFactory(EventHandlerFactoryBase):
def _build_connector(self):
return TFWConnector()