#!/usr/bin/python3 # -*- coding: utf-8 -*- import sys from appWindow import Main from ui.globals import * try: app = Main() app.geometry("1280x720") app.mainloop() except KeyboardInterrupt as e: pass running = False sys.exit()