from controller.IMainWindowController import * class MainWindowController(IEventHandler): def __init__(self, parser, app_controller): self.parser = parser self.app_controller = app_controller def on_quit(self): self.app_controller.on_quit() pass