James McCool commited on
Commit
34460c9
·
1 Parent(s): aa1ddcc

Comment out player eligibility filtering in Handbuilder tab of app.py to temporarily disable player selection logic, allowing for further testing and adjustments without affecting current functionality.

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -856,7 +856,7 @@ with tab4:
856
  return True
857
  return False
858
 
859
- player_select_df = player_select_df[player_select_df.apply(is_player_eligible, axis=1)]
860
 
861
  col1, col2 = st.columns([1, 2])
862
  with col2:
 
856
  return True
857
  return False
858
 
859
+ # player_select_df = player_select_df[player_select_df.apply(is_player_eligible, axis=1)]
860
 
861
  col1, col2 = st.columns([1, 2])
862
  with col2: