Skip to content

Commit

Permalink
Remove redundant
Browse files Browse the repository at this point in the history
  • Loading branch information
moshemorad committed Nov 7, 2024
1 parent 1b05167 commit 4f83391
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion robusta_krr/formatters/csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ def csv_exporter(result: Result) -> str:
output = io.StringIO()
csv_writer = csv.DictWriter(output, csv_columns, extrasaction="ignore")
csv_writer.writeheader()
# csv_writer.writerow(csv_columns)

for _, group in itertools.groupby(
enumerate(result.scans), key=lambda x: (x[1].object.cluster, x[1].object.namespace, x[1].object.name)
Expand Down

0 comments on commit 4f83391

Please sign in to comment.