Skip to content

Commit

Permalink
Fixes focused on linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ross-spencer committed Nov 19, 2024
1 parent 204c763 commit 8d77eca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/itn_api/reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def generate_participant_count_csv(report: dict) -> str:
rows.append(row.strip())
csv_header = (
f"participant, license, stake, days_in_range, max_possible, start, end, "
f"total_collected, total_data_points, avg_per_feed, {",".join(feed_cols)}"
f"total_collected, total_data_points, avg_per_feed, {','.join(feed_cols)}"
)
csv = f"{csv_header}\n"
for row in rows:
Expand Down

0 comments on commit 8d77eca

Please sign in to comment.