From cf05f0221fea88cddd520385a291ddda2a3c5000 Mon Sep 17 00:00:00 2001 From: "B.Jothin kumar" Date: Wed, 13 Oct 2021 13:05:51 +0530 Subject: [PATCH] Update gui.py --- gui.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/gui.py b/gui.py index cb6e808..343775d 100644 --- a/gui.py +++ b/gui.py @@ -18,8 +18,6 @@ def speak(text): chat_listbox.insert('end', f'Assistant: {text}') -for x in range(1, 1001): - speak(str(x)) scroll_bar.pack(side=tk.RIGHT, fill=tk.Y) chat_listbox.pack(fill=tk.BOTH, side=tk.RIGHT) scroll_bar.configure(command=chat_listbox.yview) @@ -30,4 +28,3 @@ root.minsize(700, 500) root.wm_title('Desktop assistant') root.resizable(False, True) mainloop = root.mainloop -mainloop()