James McCool commited on
Commit
38618a0
·
1 Parent(s): 90c3e80

Update player selection display in Handbuilder tab of app.py to remove unnecessary columns from the DataFrame, enhancing clarity and maintaining the overall functionality of the lineup presentation.

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -830,7 +830,7 @@ with tab4:
830
  with col1:
831
  st.subheader("Lineup")
832
  st.dataframe(
833
- select_players_disp.drop(columns=['Select']),
834
  use_container_width=True,
835
  height=250,
836
  hide_index=True
 
830
  with col1:
831
  st.subheader("Lineup")
832
  st.dataframe(
833
+ select_players_disp,
834
  use_container_width=True,
835
  height=250,
836
  hide_index=True