Skip to content

Commit

Permalink
Update functions.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Kudzmat authored Nov 18, 2024
1 parent 3594c76 commit 432131a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NoseBleedSeat/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def get_player_bio(player_id):
bio = {}

# get player info
player_info = commonplayerinfo.CommonPlayerInfo(player_id, proxy=proxy_url)
player_info = commonplayerinfo.CommonPlayerInfo(player_id=player_id, proxy=proxy_url)
player_bio = player_info.get_dict()

# player stats
Expand Down Expand Up @@ -344,7 +344,7 @@ def get_accolades(player_id):
accolades_history = {}

# get list of accolades
player_accolades = playerawards.PlayerAwards(player_id, proxy=proxy_url)
player_accolades = playerawards.PlayerAwards(player_id=player_id, proxy=proxy_url)

# add award descriptions to accolades empty list
player_awards = player_accolades.get_data_frames()[0]
Expand Down

0 comments on commit 432131a

Please sign in to comment.