Skip to content

Commit

Permalink
change zip file name to f string
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldcampbelljr committed Jan 25, 2024
1 parent fa11a1e commit 8d70a22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipestat/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def zip_report(report_dir_name: str):
:return: None
"""

zip_file_name = report_dir_name + "_report_portable"
zip_file_name = f"{report_dir_name}_report_portable"

Check warning on line 247 in pipestat/helpers.py

View check run for this annotation

Codecov / codecov/patch

pipestat/helpers.py#L247

Added line #L247 was not covered by tests

try:
make_archive(zip_file_name, "zip", report_dir_name)
Expand Down

0 comments on commit 8d70a22

Please sign in to comment.