mirror of
https://github.com/ml-explore/mlx-examples.git
synced 2025-08-29 18:26:37 +08:00
Fixing case for no case
This commit is contained in:
parent
70e4a6e662
commit
b84b483e9f
@ -20,7 +20,7 @@ def ask_for_confirmation(message: str) -> bool:
|
|||||||
return True
|
return True
|
||||||
if answer in n:
|
if answer in n:
|
||||||
return False
|
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():
|
def main():
|
||||||
|
Loading…
Reference in New Issue
Block a user