Skip to content

Commit

Permalink
lint: remove blank lines
Browse files Browse the repository at this point in the history
  • Loading branch information
DesiPilla committed Nov 18, 2023
1 parent 3cda1f4 commit 55741f3
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions espn_api/football/player.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,11 @@ def __init__(self, data, year):
self.projected_total_points = self.stats.get(0, {}).get('projected_points', 0)
self.avg_points = self.stats.get(0, {}).get('avg_points', 0)
self.projected_avg_points = self.stats.get(0, {}).get('projected_avg_points', 0)

if not stat_source:
if not self.stats[scoring_period][breakdown_type]:
self.active_status = 'inactive'
else:
self.active_status = 'active'


def __repr__(self):
return f'Player({self.name})'

0 comments on commit 55741f3

Please sign in to comment.