James McCool
commited on
Commit
·
ec67dfb
1
Parent(s):
eb50f14
Update player name lists in app.py to include 'Joseph Cantillo' and 'Joey Cantillo' for improved accuracy in lineup management. This change ensures correct player identification in the MLB context.
Browse files
app.py
CHANGED
@@ -28,8 +28,8 @@ from global_func.reduce_volatility_preset import reduce_volatility_preset
|
|
28 |
|
29 |
freq_format = {'Finish_percentile': '{:.2%}', 'Lineup Edge': '{:.2%}', 'Win%': '{:.2%}'}
|
30 |
stacking_sports = ['MLB', 'NHL', 'NFL']
|
31 |
-
player_wrong_names_mlb = ['Enrique Hernandez']
|
32 |
-
player_right_names_mlb = ['Kike Hernandez']
|
33 |
|
34 |
with st.container():
|
35 |
|
|
|
28 |
|
29 |
freq_format = {'Finish_percentile': '{:.2%}', 'Lineup Edge': '{:.2%}', 'Win%': '{:.2%}'}
|
30 |
stacking_sports = ['MLB', 'NHL', 'NFL']
|
31 |
+
player_wrong_names_mlb = ['Enrique Hernandez', 'Joseph Cantillo']
|
32 |
+
player_right_names_mlb = ['Kike Hernandez', 'Joey Cantillo']
|
33 |
|
34 |
with st.container():
|
35 |
|