Skip to content

Commit

Permalink
style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
divyegala committed Nov 7, 2023
1 parent 16d619e commit a195530
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,14 +114,15 @@ def convert_json_to_csv_search(dataset, dataset_path):
write.iloc[s_index, write_ncols] = build_df.iloc[
b_index, 2
]
write.iloc[s_index, write_ncols + 1:] = build_df.iloc[
write.iloc[s_index, write_ncols + 1 :] = build_df.iloc[
b_index, 3:
]
break
else:
warnings.warn(
f"Build CSV not found for {algo_name}, build params won't be "
"appended in the Search CSV")
"appended in the Search CSV"
)

write.to_csv(file.replace(".json", ".csv"), index=False)

Expand Down

0 comments on commit a195530

Please sign in to comment.