wobbl_tools/tests/utils.py

14 lines
210 B
Python
Raw Normal View History

2025-03-26 18:34:55 +01:00
#!/usr/bin/python3
def is_right() -> bool:
"""
Ask the developer if the output of the test is right.
"""
yn = input("\nIs this right? (y/n): ")
print("\n")
return yn.lower() == "y"