Skip to content

Commit

Permalink
Merge pull request CCI-MOC#79 from QuanMPhm/78/remove_index
Browse files Browse the repository at this point in the history
Removed index from exported invoices
  • Loading branch information
QuanMPhm authored Aug 16, 2024
2 parents 3b2a34b + 4d2325a commit 5c4b024
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion process_report/invoices/invoice.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def _prepare_export(self):
pass

def export(self):
self.data.to_csv(self.output_path)
self.data.to_csv(self.output_path, index=False)

def export_s3(self, s3_bucket):
s3_bucket.upload_file(self.output_path, self.output_s3_key)
Expand Down

0 comments on commit 5c4b024

Please sign in to comment.