Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
small revert
Browse files
app.py
CHANGED
@@ -242,10 +242,10 @@ async def add_exp(member_id):
|
|
242 |
|
243 |
# finding leaderboard rank + excluding huggingfolks
|
244 |
try:
|
245 |
-
row =
|
246 |
print(f"member id found")# does this need to be string?
|
247 |
target_exp = row['discord_exp'].values[0]
|
248 |
-
rank = (
|
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
|
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)
|