Files
watchy/watchy-image-editor/main.py
T
2021-08-26 15:53:12 +02:00

12 lines
194 B
Python

import tkinter as tk
from .app import App
if __name__ == "__main__":
app = App(tk.Tk())
# TODO remove debug
app.open_file("../watchfaces/tetris-2.0/tetris.h")
app.mainloop()