datakomarov commited on
Commit
fd5fd16
·
verified ·
1 Parent(s): c350379

making LB pretty

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -71,6 +71,7 @@ def load_sorted_leaderboard():
71
  return df
72
  df = sort_leaderboard(df).reset_index()
73
  df['Place'] = df['index'] + 1
 
74
  return df
75
 
76
  def submit_file(file_obj, username, team, commit):
 
71
  return df
72
  df = sort_leaderboard(df).reset_index()
73
  df['Place'] = df['index'] + 1
74
+ df = df[['Place'] + LB_COLUMNS]
75
  return df
76
 
77
  def submit_file(file_obj, username, team, commit):