Skip to content

Commit

Permalink
Merge pull request #1186 from DimitriPapadopoulos/extraneous_parenthese
Browse files Browse the repository at this point in the history
STY: Remove extraneous parentheses
  • Loading branch information
oesteban committed Mar 18, 2024
2 parents 3266559 + 911430d commit 9050c05
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mriqc/workflows/anatomical/base.py
Expand Up @@ -95,7 +95,7 @@ def anat_qc_workflow(name="anatMRIQC"):
detail=(
f"for {len(dataset)} NIfTI files."
if len(dataset) > 2
else f"({' and '.join(('<%s>' % v for v in dataset))})."
else f"({' and '.join('<%s>' % v for v in dataset)})."
),
)
config.loggers.workflow.info(message)
Expand Down
2 changes: 1 addition & 1 deletion mriqc/workflows/diffusion/base.py
Expand Up @@ -90,7 +90,7 @@ def dmri_qc_workflow(name="dwiMRIQC"):
detail=(
f"for {len(dataset)} NIfTI files."
if len(dataset) > 2
else f"({' and '.join(('<%s>' % v for v in dataset))})."
else f"({' and '.join('<%s>' % v for v in dataset)})."
),
)
config.loggers.workflow.info(message)
Expand Down
2 changes: 1 addition & 1 deletion mriqc/workflows/functional/base.py
Expand Up @@ -82,7 +82,7 @@ def fmri_qc_workflow(name="funcMRIQC"):
detail=(
f"for {len(dataset)} BOLD runs."
if len(dataset) > 2
else f"({' and '.join(('<%s>' % v for v in dataset))})."
else f"({' and '.join('<%s>' % v for v in dataset)})."
),
)
config.loggers.workflow.info(message)
Expand Down

0 comments on commit 9050c05

Please sign in to comment.