Skip to content

Commit

Permalink
Merge pull request #142 from dtcarls/develop
Browse files Browse the repository at this point in the history
trophy fix for leagues with exceptionally high scoring
  • Loading branch information
dtcarls committed Sep 19, 2024
2 parents 1897086 + 01af6ad commit 3f2180d
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 3f2180d

Please sign in to comment.