Fixing case for no case

This commit is contained in:
Ivan Fioravanti 2024-12-31 16:29:09 +01:00 committed by GitHub
parent 70e4a6e662
commit b84b483e9f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,7 +20,7 @@ def ask_for_confirmation(message: str) -> bool:
return True
if answer in n:
return False
print(f"Invalid input. Must be one of: yes/no/y/N or empty for no")
print(f"Invalid input. Must be one of: yes/no/y/n or empty for no")
def main():