Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
community_global_df['discord_exp'] = community_global_df['discord_exp'].str.strip('L').astype(int)
Browse files
app.py
CHANGED
@@ -416,8 +416,13 @@ async def remove_huggingfolks():
|
|
416 |
# make a copy while discord id column still exists -> use for rank in discord embeds
|
417 |
community_global_df_with_id = community_global_df_with_id.copy()
|
418 |
|
|
|
|
|
|
|
|
|
419 |
# drop first column (discord id -> this is so we can display the important stuff in the leaderboard)
|
420 |
community_global_df.drop(community_global_df.columns[0], axis=1, inplace=True)
|
|
|
421 |
community_global_df['discord_exp'] = pd.to_numeric(community_global_df['discord_exp'])
|
422 |
community_global_df = community_global_df.nlargest(len(community_global_df), 'discord_exp')
|
423 |
|
|
|
416 |
# make a copy while discord id column still exists -> use for rank in discord embeds
|
417 |
community_global_df_with_id = community_global_df_with_id.copy()
|
418 |
|
419 |
+
|
420 |
+
|
421 |
+
|
422 |
+
|
423 |
# drop first column (discord id -> this is so we can display the important stuff in the leaderboard)
|
424 |
community_global_df.drop(community_global_df.columns[0], axis=1, inplace=True)
|
425 |
+
community_global_df['discord_exp'] = community_global_df['discord_exp'].str.strip('L').astype(int)
|
426 |
community_global_df['discord_exp'] = pd.to_numeric(community_global_df['discord_exp'])
|
427 |
community_global_df = community_global_df.nlargest(len(community_global_df), 'discord_exp')
|
428 |
|