Spaces:
Sleeping
Sleeping
James McCool
commited on
Commit
·
dd9a672
1
Parent(s):
63fb3b9
Made a mistake in my designations for exposure_spread that I think was not counting any of the columns.
Browse files
global_func/exposure_spread.py
CHANGED
|
@@ -144,6 +144,8 @@ def check_position_eligibility(sport, column_name, player_positions):
|
|
| 144 |
return check_tennis_position_eligibility(column_name, player_positions)
|
| 145 |
elif sport == 'LOL':
|
| 146 |
return check_lol_position_eligibility(column_name, player_positions)
|
|
|
|
|
|
|
| 147 |
else:
|
| 148 |
# Default fallback - assume exact position match
|
| 149 |
return column_name in player_positions
|
|
|
|
| 144 |
return check_tennis_position_eligibility(column_name, player_positions)
|
| 145 |
elif sport == 'LOL':
|
| 146 |
return check_lol_position_eligibility(column_name, player_positions)
|
| 147 |
+
elif sport == 'NASCAR':
|
| 148 |
+
return check_nascar_position_eligibility(column_name, player_positions)
|
| 149 |
else:
|
| 150 |
# Default fallback - assume exact position match
|
| 151 |
return column_name in player_positions
|