Update gui.py

This commit is contained in:
B.Jothin kumar 2021-10-13 13:05:51 +05:30 committed by GitHub
parent 3bd0d51e5d
commit cf05f0221f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

3
gui.py
View File

@ -18,8 +18,6 @@ def speak(text):
chat_listbox.insert('end', f'Assistant: {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) scroll_bar.pack(side=tk.RIGHT, fill=tk.Y)
chat_listbox.pack(fill=tk.BOTH, side=tk.RIGHT) chat_listbox.pack(fill=tk.BOTH, side=tk.RIGHT)
scroll_bar.configure(command=chat_listbox.yview) scroll_bar.configure(command=chat_listbox.yview)
@ -30,4 +28,3 @@ root.minsize(700, 500)
root.wm_title('Desktop assistant') root.wm_title('Desktop assistant')
root.resizable(False, True) root.resizable(False, True)
mainloop = root.mainloop mainloop = root.mainloop
mainloop()