File size: 180 Bytes
b2e0073
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
# main.py
import tkinter as tk
from gui import HeizsystemRechnerGUI

if __name__ == "__main__":
    root = tk.Tk()
    app = HeizsystemRechnerGUI(root)
    root.mainloop()