Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Raymo111 committed Aug 22, 2020
1 parent 142e671 commit 4af5dc5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .idea/dictionaries/raymo.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions kbot
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ if __name__ == "__main__":
nickname = args.nick
pin = args.pin
searchOnly = args.search
quizID = args.quizName
quizName = args.quizID
quizID = args.quizID
quizName = args.quizName
maxCount = args.maxCount
debug = args.debug

Expand Down Expand Up @@ -92,7 +92,7 @@ if __name__ == "__main__":
user = klib.Kahoot(pin=pin, nickname=nickname, quizID=checkID(input('quizID > ')), DEBUG=debug)
else:
user = klib.Kahoot(pin=pin, nickname=nickname, quizID=checkID(input('quizID > ')), DEBUG=debug)
if email and password:
if email and password and user:
user.authenticate(email, password)
if searchOnly:
user.search()
Expand Down

0 comments on commit 4af5dc5

Please sign in to comment.