Skip to content

Commit f4cfce0

Browse files
committed
FIX: Close paren; STY: Flake8
1 parent 1fa69e1 commit f4cfce0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

fmriprep/workflows/bold/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ def init_func_preproc_wf(bold_file, ignore, freesurfer,
273273
"Multiple single-band reference files found for {}; using "
274274
"{}".format(refbase, sbbase))
275275
else:
276-
LOGGER.log(25, "Using single-band reference file {}".format(sbbase)
276+
LOGGER.log(25, "Using single-band reference file {}".format(sbbase))
277277
else:
278278
LOGGER.log(25, "No single-band-reference found for {}".format(refbase))
279279

fmriprep/workflows/bold/util.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ def init_bold_reference_wf(omp_nthreads, bold_file=None, name='bold_reference_wf
8787
First, a reference volume and its skull-stripped version were generated
8888
using a custom methodology of *fMRIPrep*.
8989
"""
90-
inputnode = pe.Node(niu.IdentityInterface(fields=['bold_file', 'sbref_file']), name='inputnode')
90+
inputnode = pe.Node(niu.IdentityInterface(fields=['bold_file', 'sbref_file']),
91+
name='inputnode')
9192
outputnode = pe.Node(
9293
niu.IdentityInterface(fields=['bold_file', 'raw_ref_image', 'skip_vols', 'ref_image',
9394
'ref_image_brain', 'bold_mask', 'validation_report',

0 commit comments

Comments
 (0)