James McCool
commited on
Commit
·
a0d4812
1
Parent(s):
298e2c8
Add debug print statement for working columns in 'exposure_spread' function to aid in tracking column data during execution.
Browse files
global_func/exposure_spread.py
CHANGED
@@ -274,7 +274,7 @@ def exposure_spread(working_frame, exposure_player, exposure_target, ignore_stac
|
|
274 |
row_data = working_frame.iloc[row]
|
275 |
working_columns = working_frame.columns
|
276 |
|
277 |
-
|
278 |
for col in working_columns:
|
279 |
if row_data[col] == exposure_player:
|
280 |
# Get the replacement player's positions
|
|
|
274 |
row_data = working_frame.iloc[row]
|
275 |
working_columns = working_frame.columns
|
276 |
|
277 |
+
print(working_columns)
|
278 |
for col in working_columns:
|
279 |
if row_data[col] == exposure_player:
|
280 |
# Get the replacement player's positions
|