Spaces:
Running on CPU Upgrade

lunarflu HF staff commited on
Commit
5432ce2
·
verified ·
1 Parent(s): 3b55873

small revert

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -242,10 +242,10 @@ async def add_exp(member_id):
242
 
243
  # finding leaderboard rank + excluding huggingfolks
244
  try:
245
- row = community_global_df_with_id[community_global_df_with_id['discord_user_id'] == str(member_id)]
246
  print(f"member id found")# does this need to be string?
247
  target_exp = row['discord_exp'].values[0]
248
- rank = (community_global_df_with_id['discord_exp'] > target_exp).sum() + 1
249
  print(f"The rank for discord_id {member_id} based on discord_exp is: {rank}")
250
  except Exception as e:
251
  print(f"Discord ID {member_id} not found in the DataFrame.")
@@ -265,7 +265,7 @@ async def add_exp(member_id):
265
  embed = Embed(color=Color.red())
266
  embed.set_author(name=f"{member}", icon_url=member.avatar.url if member.avatar else bot.user.avatar.url)
267
  embed.title = f"⚠️Your account is not Verified! Unable to level up `{current_level-1}` -> `{current_level}` ❌"
268
- msg = f'🤗 Hey {member}! You can continue leveling up in the Hugging Face Discord server by Verifying your account, and claim `{claim_exp}` bonus exp points, climbing to rank {rank} !'
269
  embed.description = f"{msg}"
270
  verification_link = "https://discord.com/channels/879548962464493619/900125909984624713"
271
  embed.add_field(name="Verify Here:", value=verification_link, inline=True)
 
242
 
243
  # finding leaderboard rank + excluding huggingfolks
244
  try:
245
+ row = global_df[global_df['discord_user_id'] == str(member_id)]
246
  print(f"member id found")# does this need to be string?
247
  target_exp = row['discord_exp'].values[0]
248
+ rank = (global_df['discord_exp'] > target_exp).sum() + 1
249
  print(f"The rank for discord_id {member_id} based on discord_exp is: {rank}")
250
  except Exception as e:
251
  print(f"Discord ID {member_id} not found in the DataFrame.")
 
265
  embed = Embed(color=Color.red())
266
  embed.set_author(name=f"{member}", icon_url=member.avatar.url if member.avatar else bot.user.avatar.url)
267
  embed.title = f"⚠️Your account is not Verified! Unable to level up `{current_level-1}` -> `{current_level}` ❌"
268
+ msg = f'🤗 Hey {member}! You can continue leveling up in the Hugging Face Discord server by Verifying your account, and claim `{claim_exp}` bonus exp points!'
269
  embed.description = f"{msg}"
270
  verification_link = "https://discord.com/channels/879548962464493619/900125909984624713"
271
  embed.add_field(name="Verify Here:", value=verification_link, inline=True)