from classes.tui import VMApp def main(): try: app = VMApp() app.run() except KeyboardInterrupt: pass if __name__ == "__main__": main()