Skip to content

Commit fa16f57

Browse files
minor fix for the freeze commands
1 parent a36fb64 commit fa16f57

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ def housekeeping() -> None:
3737
def freeze() -> None:
3838
"""Freezes all matches."""
3939
Match.frozen = True
40-
print("All matchs are now frozen.")
40+
print("All matches are now frozen.")
4141

4242

4343
@Command("unfreeze", "Unfreezes all match timers.")
4444
def unfreeze() -> None:
4545
"""Unfreezes all matches."""
4646
Match.frozen = False
47-
print("All matches are no longer frozen.")
47+
print("Matches are no longer frozen.")
4848

4949

5050
# Entry point

0 commit comments

Comments
 (0)