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 db52477 commit 204c763
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 @@ -280,7 +280,7 @@ def generate_participant_count_csv(report: dict) -> str:
f'{start}, {end}, "{humanize.intcomma(total_collected)}",'
f'"{humanize.intcomma(total_data_points)}", '
f' "{humanize.intcomma(average_per_feed)}", '
f"{",".join(participant_feeds)}"
f"{','.join(participant_feeds)}"
)
rows.append(row.strip())
csv_header = (
Expand Down

0 comments on commit 204c763

Please sign in to comment.