diff --git a/ctimer/cli.py b/ctimer/cli.py index 7a65abb..07a91b3 100644 --- a/ctimer/cli.py +++ b/ctimer/cli.py @@ -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