Spaces:
Paused
Paused
File size: 161 Bytes
18a3a92 | 1 2 3 4 5 6 7 8 | # main.py
import tkinter as tk
from app import GraphBuilderApp
if __name__ == "__main__":
root = tk.Tk()
app = GraphBuilderApp(root)
root.mainloop() |