lunarflu HF staff commited on
Commit
3ee02d8
·
verified ·
1 Parent(s): e107976

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -152,7 +152,7 @@ def update_hub_stats():
152
 
153
  # total exp (discord + hub)
154
  discord_exp = row['discord_exp']
155
- discord_exp_int = discord_exp.str.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
 
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