Files
watchy/watchy-image-editor/main.py
T
Klemek 4e82f20a27 Revert "OVERALL FIX"
This reverts commit c26ab25212.
2024-03-15 17:36:32 +01:00

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()