James McCool commited on
Commit
6136ed6
·
1 Parent(s): cee1912

Add debug print statements in load_dk_fd_file.py: include print statements for lineups_df and export_df to assist in debugging and data verification during file processing.

Browse files
Files changed (1) hide show
  1. global_func/load_dk_fd_file.py +3 -0
global_func/load_dk_fd_file.py CHANGED
@@ -27,6 +27,9 @@ def load_dk_fd_file(lineups, csv_file):
27
  pass
28
 
29
  export_df = lineups_df.copy()
 
 
 
30
 
31
  # Map the IDs to names
32
  for col in lineups_df.columns:
 
27
  pass
28
 
29
  export_df = lineups_df.copy()
30
+
31
+ print(lineups_df)
32
+ print(export_df)
33
 
34
  # Map the IDs to names
35
  for col in lineups_df.columns: