Files
watchy/watchy-image-editor/main.py
T
2021-08-26 17:11:18 +02:00

12 lines
193 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()