Skip to content

Commit

Permalink
fix f-string quote issue for python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldcampbelljr committed Nov 8, 2023
1 parent 6914fd5 commit 1c2c844
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pypiper/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ def run(self, start_point=None, stop_before=None, stop_after=None):
# between results from different stages.
skip_mode = False

print(f"Running stage: {getattr(stage, "name", str(stage))}")
print(f"Running stage: {getattr(stage, 'name', str(stage))}")

stage.run()
self.executed.append(stage)
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements-pypiper.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ psutil
pandas
ubiquerg>=0.4.5
yacman
pipestat>=0.6.0a4
pipestat>=0.6.0a5

0 comments on commit 1c2c844

Please sign in to comment.