KliWinBa-WebTool / tempCodeRunnerFile.py
DanielB-EWL's picture
Upload 20 files
b2e0073 verified
raw
history blame contribute delete
180 Bytes
# main.py
import tkinter as tk
from gui import HeizsystemRechnerGUI
if __name__ == "__main__":
root = tk.Tk()
app = HeizsystemRechnerGUI(root)
root.mainloop()