Skip to content

Commit

Permalink
fix(cli.py): fix typo wording
Browse files Browse the repository at this point in the history
  • Loading branch information
tai271828 committed Dec 28, 2020
1 parent 11b82e0 commit 0324254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ctimer/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def yesno(question):
ans = input(prompt).strip().lower()
if ans not in ["y","n"]:
print("please type y or n.")
return yestno(question)
return yesno(question)
if ans == "y":
return True
return False
Expand Down

0 comments on commit 0324254

Please sign in to comment.