Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/cwendt94/espn-api into ba…
Browse files Browse the repository at this point in the history
…sketball_team_pa_pf
  • Loading branch information
cwendt94 committed Jan 2, 2025
2 parents 138fa9b + fe360ad commit 767a95f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions espn_api/basketball/league.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from .constant import POSITION_MAP, ACTIVITY_MAP, TRANSACTION_TYPES

class League(BaseLeague):
teams: List[Team]
'''Creates a League instance for Public/Private ESPN league'''
def __init__(self, league_id: int, year: int, espn_s2=None, swid=None, fetch_league=True, debug=False):
super().__init__(league_id=league_id, year=year, sport='nba', espn_s2=espn_s2, swid=swid, debug=debug)
Expand Down
4 changes: 3 additions & 1 deletion espn_api/basketball/team.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from typing import List

from .player import Player
from .matchup import Matchup
from .constant import STATS_MAP
Expand Down Expand Up @@ -25,7 +27,7 @@ def __init__(self, data, roster, schedule, year, **kwargs):
self.stats = None
self.standing = data['playoffSeed']
self.final_standing = data['rankCalculatedFinal']
self.roster = []
self.roster: List[Player] = []
self.schedule = []

if 'valuesByStat' in data:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
description='ESPN API',
long_description=readme,
long_description_content_type="text/markdown",
install_requires=['requests>=2.0.0,<3.0.0'],
install_requires=['requests>=2.0.0,<3.0.0', 'urllib3<=2.2.3'],
setup_requires=['nose>=1.0'],
test_suite='nose.collector',
tests_require=['nose', 'requests_mock', 'coverage'],
Expand Down

0 comments on commit 767a95f

Please sign in to comment.