From cdeb53f77043c4d339b091cbe545d868124e87ef Mon Sep 17 00:00:00 2001 From: "Richard Horton (hortonr6)" Date: Sun, 19 Nov 2017 22:06:58 +0000 Subject: [PATCH] Added comment --- Client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Client.py b/Client.py index e3a6fe0..b4b2620 100644 --- a/Client.py +++ b/Client.py @@ -88,7 +88,7 @@ sendBtn = tk.Button(window, text="Send Message", command=sendMessage) sendBtn.pack(side="right", pady=15) receiveMessage(i) #Receives the initial message from the chatbot -i = i + 1 +i = i + 1 #Used to prevent global variable username being reset after initial declaration tk.mainloop() #Runs the GUI