lunarflu HF staff commited on
Commit
2fbf4bc
1 Parent(s): 3ee02d8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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').astype(int)
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