# main.py import tkinter as tk import src.gpx2cnx as G2C # Run App root = tk.Tk() G2C.GPX2CNX(root) root.mainloop()