Skip to content

Commit

Permalink
Removed index from exported invoices
Browse files Browse the repository at this point in the history
  • Loading branch information
QuanMPhm committed Aug 14, 2024
1 parent 287afea commit 4d2325a
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 @@ -71,7 +71,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 4d2325a

Please sign in to comment.