Skip to content

Commit

Permalink
feature: Added header to csv reports
Browse files Browse the repository at this point in the history
  • Loading branch information
zekiahmetbayar committed Dec 14, 2023
1 parent 18e5a64 commit dd9e8b5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ def CreatePDFReport(body: ReportCreateRequest):
row = ["sep=" + body.Seperator]

writer.writerow(row)
writer.writerow(body.Header)
writer.writerow(body.Columns)
for data in body.Data:
row = []
Expand Down

0 comments on commit dd9e8b5

Please sign in to comment.