Skip to content

Commit

Permalink
Update functions.py
Browse files Browse the repository at this point in the history
added saving blocks, steals to model
  • Loading branch information
Kudzmat authored Nov 17, 2024
1 parent 1391af8 commit f3d3fdb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion NoseBleedSeat/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ def fetch_player_data(player_name, player_id=None):
status=player_bio.get('status', ''),
PTS=player_bio.get('PTS', 0),
REB=player_bio.get('REB', 0),
AST=player_bio.get('AST', 0)
AST=player_bio.get('AST', 0),
BLK=player_bio.get('BLK', 0),
STL=player_bio.get('STL', 0),
)
player_bio_data.save()

Expand Down

0 comments on commit f3d3fdb

Please sign in to comment.