Skip to content

Commit

Permalink
Merge pull request #3435 from matbonfanti/fix-create-params-file
Browse files Browse the repository at this point in the history
output passed to write_params_file as Path object
  • Loading branch information
mashehu authored Jan 30, 2025
2 parents 1265f65 + 5f92650 commit 2bbdb87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

### General

- output passed to write_params_file as Path object ([#3435](https://github.com/nf-core/tools/pull/3435))
- chore(deps): update python:3.12-slim docker digest to 69ce3ae ([#3433](https://github.com/nf-core/tools/pull/3433))

## [v3.2.0 - Pewter Pangolin](https://github.com/nf-core/tools/releases/tag/3.2.0) - [2025-01-27]
Expand Down
2 changes: 1 addition & 1 deletion nf_core/commands_pipelines.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def pipelines_create_params_file(ctx, pipeline, revision, output, force, show_hi
"""
builder = ParamsFileBuilder(pipeline, revision)

if not builder.write_params_file(output, show_hidden=show_hidden, force=force):
if not builder.write_params_file(Path(output), show_hidden=show_hidden, force=force):
sys.exit(1)


Expand Down

0 comments on commit 2bbdb87

Please sign in to comment.