Remove debug print from is_game_over() causing stdout spam

Bug: The is_game_over() function contained a debug print statement that was
printing "1: " to stdout on every call. This was causing massive log spam
in Docker container output (thousands of lines) and making it difficult to
diagnose actual issues.

Fix: Remove the print(f'1: ') statement from line 3251.

Bumps version to 1.7.4

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Cal Corum 2025-11-17 07:11:10 -06:00
parent ae52e9aad7
commit 563820fe93
2 changed files with 1 additions and 2 deletions

View File

@ -1 +1 @@
1.7.3 1.7.4

View File

@ -3248,7 +3248,6 @@ async def show_defense_cards(session: Session, interaction: discord.Interaction,
def is_game_over(this_play: Play) -> bool: def is_game_over(this_play: Play) -> bool:
print(f'1: ')
if this_play.inning_num < 9 and (abs(this_play.away_score - this_play.home_score) < 10): if this_play.inning_num < 9 and (abs(this_play.away_score - this_play.home_score) < 10):
return False return False