Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -54,6 +54,7 @@ def pull_baselines():
|
|
54 |
'Player TP', 'Player Blocks', 'Player Saves']]
|
55 |
prop_table['Player'].replace(['JJ Peterka', 'Alexander Killorn', 'Matt Boldy', 'Nick Paul', 'Alex Kerfoot'],
|
56 |
['John-Jason Peterka', 'Alex Killorn', 'Matthew Boldy', 'Nicholas Paul', 'Alexander Kerfoot'], inplace=True)
|
|
|
57 |
|
58 |
worksheet = sh.worksheet('prop_trends')
|
59 |
raw_display = pd.DataFrame(worksheet.get_all_records())
|
|
|
54 |
'Player TP', 'Player Blocks', 'Player Saves']]
|
55 |
prop_table['Player'].replace(['JJ Peterka', 'Alexander Killorn', 'Matt Boldy', 'Nick Paul', 'Alex Kerfoot'],
|
56 |
['John-Jason Peterka', 'Alex Killorn', 'Matthew Boldy', 'Nicholas Paul', 'Alexander Kerfoot'], inplace=True)
|
57 |
+
prop_table['Player'] = prop_table['Player'].str.strip()
|
58 |
|
59 |
worksheet = sh.worksheet('prop_trends')
|
60 |
raw_display = pd.DataFrame(worksheet.get_all_records())
|