4e82f20a27
This reverts commit c26ab25212.
10 lines
128 B
Python
10 lines
128 B
Python
import tkinter as tk
|
|
import os.path
|
|
|
|
from app import App
|
|
|
|
if __name__ == "__main__":
|
|
app = App(tk.Tk())
|
|
|
|
app.mainloop()
|