fix: remove unused variable g from series_blurb after Game X removal
CI / Lint (push) Successful in 13s
CI / Test (push) Successful in 14s
CI / Build & Push (push) Successful in 40s

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-23 12:11:49 -04:00
parent fac1a0ecbc
commit b8819167f5
-1
View File
@@ -109,7 +109,6 @@ def _game_number(game, state):
def series_blurb(game): def series_blurb(game):
"""One sentence of series context for a playoff card.""" """One sentence of series context for a playoff card."""
state = series_state(game.get("seriesStatus", {})) state = series_state(game.get("seriesStatus", {}))
g = _game_number(game, state)
leader_name = _leader_name(game, state) leader_name = _leader_name(game, state)
trailer_name = _trailer_name(game, state) trailer_name = _trailer_name(game, state)
is_final = game.get("gameState") in ("FINAL", "OFF") is_final = game.get("gameState") in ("FINAL", "OFF")