Open bdf0506 opened 10 months ago
Football
Unable to get the projected score of the final week - it shows the projected scores to equal the final scores.
>>> from espn_api.football import League >>> league = League(league_id=xxxxx, year=2023, espn_s2='xxxx', swid='xxxx') >>> box_scores = league.box_scores(16) >>> box_scores[0].away_score 134.64 >>> box_scores[0].away_projected 134.64 >>>
But going back to week 15, all is well in the world:
>>> box_scores = league.box_scores(15) >>> box_scores[0].away_projected 108.38999999999999 >>> box_scores[0].away_score 115.42
Trying another league, week 16 (where it is NOT the final week of the league), it pulls the week 16 projected scores without issue.
Having a similar issue with 2 week playoffs, I expect it is related.
Sport
Football
Summary
Unable to get the projected score of the final week - it shows the projected scores to equal the final scores.
Logs/Data
But going back to week 15, all is well in the world:
Trying another league, week 16 (where it is NOT the final week of the league), it pulls the week 16 projected scores without issue.