James McCool commited on
Commit
9cec9e7
·
1 Parent(s): b6cd6af

Update player name mappings in app.py for MLB to include 'Jakob Bauers' and 'Jake Bauers', enhancing accuracy in name recognition.

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -25,8 +25,8 @@ from global_func.reduce_volatility_preset import reduce_volatility_preset
25
 
26
  freq_format = {'Finish_percentile': '{:.2%}', 'Lineup Edge': '{:.2%}', 'Win%': '{:.2%}'}
27
  stacking_sports = ['MLB', 'NHL', 'NFL']
28
- player_wrong_names_mlb = ['Enrique Hernandez', 'Joseph Cantillo', 'Mike Soroka']
29
- player_right_names_mlb = ['Kike Hernandez', 'Joey Cantillo', 'Michael Soroka']
30
 
31
  with st.container():
32
 
 
25
 
26
  freq_format = {'Finish_percentile': '{:.2%}', 'Lineup Edge': '{:.2%}', 'Win%': '{:.2%}'}
27
  stacking_sports = ['MLB', 'NHL', 'NFL']
28
+ player_wrong_names_mlb = ['Enrique Hernandez', 'Joseph Cantillo', 'Mike Soroka', 'Jakob Bauers']
29
+ player_right_names_mlb = ['Kike Hernandez', 'Joey Cantillo', 'Michael Soroka', 'Jake Bauers']
30
 
31
  with st.container():
32