Skip to content

Commit

Permalink
fix displaying list of samples wiht invalid test codes
Browse files Browse the repository at this point in the history
  • Loading branch information
sophie22 committed May 16, 2023
1 parent e8d058a commit 9751594
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion general_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@ def create_job_report_file(job__report_dict):
)
for sample, test in job__report_dict["invalid_tests"]:
f.write(
" * {}: {}".format(sample, test)
"{}\t{}\n".format(sample, test)
)

return job_report_file

0 comments on commit 9751594

Please sign in to comment.