Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Synced repo using 'sync_with_huggingface' Github Action
Browse files
app.py
CHANGED
|
@@ -62,7 +62,7 @@ async def on_message(message):
|
|
| 62 |
xp_data.setdefault(author_id, 0) # default if it doesn't already exist
|
| 63 |
|
| 64 |
xp_data[author_id] += XP_PER_MESSAGE
|
| 65 |
-
print(f"{message.author} = {xp_data[
|
| 66 |
#print(f"xp_data: {xp_data}")
|
| 67 |
save_xp_data()
|
| 68 |
|
|
|
|
| 62 |
xp_data.setdefault(author_id, 0) # default if it doesn't already exist
|
| 63 |
|
| 64 |
xp_data[author_id] += XP_PER_MESSAGE
|
| 65 |
+
print(f"{message.author} = {xp_data[author_id]}")
|
| 66 |
#print(f"xp_data: {xp_data}")
|
| 67 |
save_xp_data()
|
| 68 |
|