Skip to content

Commit

Permalink
trophy fix for leagues with exceptionally high scoring
Browse files Browse the repository at this point in the history
  • Loading branch information
dtcarls authored Sep 19, 2024
1 parent 16f3af6 commit 01af6ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gamedaybot/espn/functionality.py
Original file line number Diff line number Diff line change
Expand Up @@ -836,9 +836,9 @@ def get_trophies(league, week=None, recap=False):
week = league.current_week - 1

matchups = league.box_scores(week=week)
low_score = 9999
low_score = 99999999
high_score = -1
closest_score = 9999
closest_score = 99999999
biggest_blowout = -1

for i in matchups:
Expand Down

0 comments on commit 01af6ad

Please sign in to comment.