Skip to content

Commit 3c57168

Browse files
committed
Change chatman_gui app class
1 parent 75b4d16 commit 3c57168

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chatman_gui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from tkinter import ttk, messagebox
33
from chatman_controller import ChatmanController, EyeMovement, HandMovement, AntennaMovement
44

5-
class CheckboxGridApp:
5+
class ChatmanGUIApp:
66
def __init__(self, root):
77
self.root = root
88
self.root.title("Chatman Controller")
@@ -100,5 +100,5 @@ def generate_hex(self, _=None):
100100

101101
if __name__ == "__main__":
102102
root = tk.Tk()
103-
app = CheckboxGridApp(root)
103+
app = ChatmanGUIApp(root)
104104
root.mainloop()

0 commit comments

Comments
 (0)