kevinpro commited on
Commit
abfb23c
1 Parent(s): cf924db
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -108,7 +108,7 @@ def get_leaderboard_df():
108
  ]
109
 
110
  df = pd.DataFrame.from_records(results, columns=COLS)
111
- df = df.sort_values(by=[ MSVAMP_COL], ascending=False, na_position='last')
112
  df = df[COLS]
113
 
114
  return df
@@ -131,7 +131,7 @@ def get_leaderboard_13Bdf():
131
  # for i in results:
132
  # i.append(i[0])
133
  df = pd.DataFrame.from_records(results, columns=COLS)
134
- df = df.sort_values(by=[ MSVAMP_COL], ascending=False, na_position='last')
135
  df = df[COLS]
136
 
137
  return df
 
108
  ]
109
 
110
  df = pd.DataFrame.from_records(results, columns=COLS)
111
+ df = df.sort_values(by=[ MSVAMP_COL], ascending=False)
112
  df = df[COLS]
113
 
114
  return df
 
131
  # for i in results:
132
  # i.append(i[0])
133
  df = pd.DataFrame.from_records(results, columns=COLS)
134
+ df = df.sort_values(by=[ MSVAMP_COL], ascending=False)
135
  df = df[COLS]
136
 
137
  return df