Skip to content
Permalink
Browse files
Fix return error, was returning a None type
Forgot to save the file! xD

- Changed None to True, that way the while loop that calls the function will run again
  • Loading branch information
mateussa committed Nov 2, 2017
1 parent 48a4150 commit 3f434ad2773a07c58b51e1e8c146cd75c09d7c9b
Showing 1 changed file with 1 addition and 1 deletion.
@@ -85,7 +85,7 @@ def qChallenge():
if ("Error" in questionSet):
sendMessage(questionSet[1], False)
sendMessage("Lets try again.")
return (None)
return (True)

if (questionSet["Type"] == "multiple"):
receivedMessage = askSomething(0, [questionSet["Question"],

0 comments on commit 3f434ad

Please sign in to comment.