Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update app.py
Browse files
app.py
CHANGED
@@ -152,8 +152,8 @@ def update_hub_stats():
|
|
152 |
|
153 |
# total exp (discord + hub)
|
154 |
discord_exp = row['discord_exp']
|
155 |
-
discord_exp_int = discord_exp.strip('L')
|
156 |
-
total_exp = discord_exp_int + total_hub_exp
|
157 |
total_exp_string = f"L" + str(total_exp) + f"L"
|
158 |
global_df.loc[index, 'total_exp'] = total_exp_string
|
159 |
|
|
|
152 |
|
153 |
# total exp (discord + hub)
|
154 |
discord_exp = row['discord_exp']
|
155 |
+
discord_exp_int = discord_exp.strip('L')
|
156 |
+
total_exp = int(discord_exp_int) + int(total_hub_exp)
|
157 |
total_exp_string = f"L" + str(total_exp) + f"L"
|
158 |
global_df.loc[index, 'total_exp'] = total_exp_string
|
159 |
|