Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update app.py
Browse files
app.py
CHANGED
@@ -480,9 +480,9 @@ async def remove_huggingfolks():
|
|
480 |
|
481 |
# drop first column (discord id -> this is so we can display the important stuff in the leaderboard)
|
482 |
community_global_df.drop(community_global_df.columns[0], axis=1, inplace=True)
|
|
|
|
|
483 |
community_global_df.drop(community_global_df.columns[2], axis=1, inplace=True)
|
484 |
-
community_global_df.drop(community_global_df.columns[4], axis=1, inplace=True)
|
485 |
-
community_global_df.drop(community_global_df.columns[5], axis=1, inplace=True)
|
486 |
community_global_df['total_exp'] = community_global_df['total_exp'].str.strip('L').astype(int)
|
487 |
community_global_df['total_exp'] = pd.to_numeric(community_global_df['total_exp'])
|
488 |
community_global_df = community_global_df.nlargest(len(community_global_df), 'total_exp')
|
|
|
480 |
|
481 |
# drop first column (discord id -> this is so we can display the important stuff in the leaderboard)
|
482 |
community_global_df.drop(community_global_df.columns[0], axis=1, inplace=True)
|
483 |
+
community_global_df.drop(community_global_df.columns[1], axis=1, inplace=True)
|
484 |
+
community_global_df.drop(community_global_df.columns[2], axis=1, inplace=True)
|
485 |
community_global_df.drop(community_global_df.columns[2], axis=1, inplace=True)
|
|
|
|
|
486 |
community_global_df['total_exp'] = community_global_df['total_exp'].str.strip('L').astype(int)
|
487 |
community_global_df['total_exp'] = pd.to_numeric(community_global_df['total_exp'])
|
488 |
community_global_df = community_global_df.nlargest(len(community_global_df), 'total_exp')
|