wobbl_tools/tests/utils.py
2025-03-26 18:34:55 +01:00

13 lines
210 B
Python

#!/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"