rwitz commited on
Commit
36b976e
·
1 Parent(s): 9cca78f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -28,7 +28,7 @@ def get_user_elo_ratings():
28
  elo_ratings = dataset['train'] # or the relevant split
29
  return elo_ratings
30
 
31
- def update_elo_rating(player_id, new_rating):
32
  # Fetch the current dataset
33
  elo_ratings = get_user_elo_ratings()
34
 
 
28
  elo_ratings = dataset['train'] # or the relevant split
29
  return elo_ratings
30
 
31
+ def update_elo_rating(new_rating):
32
  # Fetch the current dataset
33
  elo_ratings = get_user_elo_ratings()
34