mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2026-04-28 20:58:05 +00:00
9 lines
221 B
Python
9 lines
221 B
Python
'''
|
|
This is the main file that initializes the calculator GUI.
|
|
'''
|
|
import tkinter as tk
|
|
from calculator import Calculator
|
|
if __name__ == "__main__":
|
|
root = tk.Tk()
|
|
calculator = Calculator(root)
|
|
root.mainloop() |