Skip to content

Commit

Permalink
Fix lint [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
donn committed Mar 26, 2023
1 parent 5b2984f commit 2459a89
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,10 @@ def add(name: str, before: str):
csv_file_in.close()

with open(filename, "w", encoding="utf8") as f:
writer = csv.DictWriter(f, csv_headers,)
writer = csv.DictWriter(
f,
csv_headers,
)
writer.writeheader()
for row in rows:
writer.writerow(row)

0 comments on commit 2459a89

Please sign in to comment.