James McCool commited on
Commit
adce0d1
·
1 Parent(s): 2ea483c

Fix typo in table name for team data retrieval in Streamlit app

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +1 -1
src/streamlit_app.py CHANGED
@@ -79,7 +79,7 @@ def init_baselines():
79
  pitcher_short = df.drop(columns = ['_id'])
80
  elif table == 'Slate_Hitters_Merge':
81
  slate_hitters = df.drop(columns = ['_id'])
82
- elif table == 'Slate_Team_Merge':
83
  slate_team = df.drop(columns = ['_id'])
84
  elif table == 'Starting_Pitchers':
85
  starting_pitchers = df.drop(columns = ['_id'])
 
79
  pitcher_short = df.drop(columns = ['_id'])
80
  elif table == 'Slate_Hitters_Merge':
81
  slate_hitters = df.drop(columns = ['_id'])
82
+ elif table == 'Slate_Teams_Merge':
83
  slate_team = df.drop(columns = ['_id'])
84
  elif table == 'Starting_Pitchers':
85
  starting_pitchers = df.drop(columns = ['_id'])