Spaces:
Running on CPU Upgrade

lunarflu HF staff commited on
Commit
65ae6b1
·
verified ·
1 Parent(s): e172551

community_global_df['discord_exp'] = community_global_df['discord_exp'].str.strip('L').astype(int)

Browse files
Files changed (1) hide show
  1. app.py +5 -0
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