James McCool
commited on
Commit
·
8a6a688
1
Parent(s):
c1393ff
Refactor column configuration in app.py by removing unnecessary dictionary structure for 'Lineup Edge'. This change streamlines the code and enhances readability while maintaining functionality.
Browse files
app.py
CHANGED
@@ -1213,9 +1213,7 @@ with tab2:
|
|
1213 |
width="small",
|
1214 |
min_value=0.0,
|
1215 |
max_value=1.0
|
1216 |
-
)
|
1217 |
-
},
|
1218 |
-
column_config={
|
1219 |
"Lineup Edge": st.column_config.NumberColumn(
|
1220 |
"Edge",
|
1221 |
help="Projected lineup edge",
|
|
|
1213 |
width="small",
|
1214 |
min_value=0.0,
|
1215 |
max_value=1.0
|
1216 |
+
),
|
|
|
|
|
1217 |
"Lineup Edge": st.column_config.NumberColumn(
|
1218 |
"Edge",
|
1219 |
help="Projected lineup edge",
|