Holger Frey
8 years ago
2 changed files with 15 additions and 9 deletions
@ -0,0 +1,13 @@
@@ -0,0 +1,13 @@
|
||||
import tkinter as tk |
||||
|
||||
import gui |
||||
|
||||
|
||||
if __name__ == '__main__': |
||||
root = tk.Tk() |
||||
app = gui.Application(master=root) |
||||
app.mainloop() |
||||
try: |
||||
root.destroy() |
||||
except tk.TclError: |
||||
pass |
Loading…
Reference in new issue