Skip to content

Commit

Permalink
small modification to consolidate script
Browse files Browse the repository at this point in the history
  • Loading branch information
h-mayorquin committed May 15, 2024
1 parent 646c8df commit 6df0ca0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/consolidate_datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def consolidate_datasets(
templates_df = pd.concat([templates_df, new_entry])
print(f"Added {num_units} units from dataset {dataset}")

templates_df.reset_index(inplace=True)
templates_df.reset_index(inplace=True, drop=True)
templates_df.to_csv("templates.csv", index=False)

# Upload to S3
Expand Down

0 comments on commit 6df0ca0

Please sign in to comment.