Multichem commited on
Commit
e483112
·
verified ·
1 Parent(s): 43b1cc0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -121,7 +121,7 @@ def init_baselines():
121
 
122
  worksheet = sh.worksheet('Stacks')
123
  all_values = worksheet.get_all_values()
124
- cell_vals = [row[0:30] for row in all_values[1:500]]
125
  frame_hold = pd.DataFrame(cell_vals, columns=['Team', 'Opp', 'd1', 'd2', 'Game Stack', 'd3', 'd4', 'd5', 'd6', 'd7', 'd8', 'd9', 'd10', 'd11', 'd12', 'd13', 'd14', 'Team Stack',
126
  '15', '16', '17', '18', '19', '20', '21', 'Total Stack Cost', 'Total Own', 'Total Points', 'Points/$'])
127
  frame_hold['Total Points'] = frame_hold['Total Points'].astype(float)
 
121
 
122
  worksheet = sh.worksheet('Stacks')
123
  all_values = worksheet.get_all_values()
124
+ cell_vals = [row[0:29] for row in all_values[1:500]]
125
  frame_hold = pd.DataFrame(cell_vals, columns=['Team', 'Opp', 'd1', 'd2', 'Game Stack', 'd3', 'd4', 'd5', 'd6', 'd7', 'd8', 'd9', 'd10', 'd11', 'd12', 'd13', 'd14', 'Team Stack',
126
  '15', '16', '17', '18', '19', '20', '21', 'Total Stack Cost', 'Total Own', 'Total Points', 'Points/$'])
127
  frame_hold['Total Points'] = frame_hold['Total Points'].astype(float)