We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a26772 commit fc9ab83Copy full SHA for fc9ab83
other/password.py
@@ -126,6 +126,9 @@ def main() -> None:
126
127
The player has up to 6 incorrect guesses to complete the word.
128
The game ends when the player wins or loses.
129
+
130
+ >>> isinstance(main(), type(None))
131
+ True
132
"""
133
answer: str = random.choice(words)
134
hint: list[str] = ["_"] * len(answer)
0 commit comments