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 a36fb64 commit fa16f57Copy full SHA for fa16f57
src/app.py
@@ -37,14 +37,14 @@ def housekeeping() -> None:
37
def freeze() -> None:
38
"""Freezes all matches."""
39
Match.frozen = True
40
- print("All matchs are now frozen.")
+ print("All matches are now frozen.")
41
42
43
@Command("unfreeze", "Unfreezes all match timers.")
44
def unfreeze() -> None:
45
"""Unfreezes all matches."""
46
Match.frozen = False
47
- print("All matches are no longer frozen.")
+ print("Matches are no longer frozen.")
48
49
50
# Entry point
0 commit comments