Skip to content

Commit

Permalink
Fixing error in data_export (not sure how this ended up getting into …
Browse files Browse the repository at this point in the history
…the code)
  • Loading branch information
cjnolet committed Nov 14, 2023
1 parent 6ef2498 commit 356eefe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def convert_json_to_csv_search(dataset, dataset_path):
write["build cpu_time"] = None
write["build GPU"] = None

for col_idx in range(5, len(build_df.columns)):
for col_idx in range(6, len(build_df.columns)):
col_name = build_df.columns[col_idx]
write[col_name] = None

Expand Down

0 comments on commit 356eefe

Please sign in to comment.