Skip to content

Commit 14d33d5

Browse files
committed
Fix spacing.
1 parent 9bf6abd commit 14d33d5

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

niworkflows/interfaces/registration.py

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
from nilearn.image import index_img
1616
from nipype.utils.filemanip import fname_presuffix
1717
from nipype.interfaces.base import (
18-
traits, isdefined, TraitedSpec, BaseInterfaceInputSpec, File, SimpleInterface, InputMultiObject)
18+
traits, isdefined, TraitedSpec, BaseInterfaceInputSpec, File,
19+
SimpleInterface, InputMultiObject)
1920
from nipype.interfaces.mixins import reporting
2021
from nipype.interfaces import freesurfer as fs
2122
from nipype.interfaces import fsl, ants, afni
@@ -348,16 +349,16 @@ def _post_run_hook(self, runtime):
348349

349350
class EstimateReferenceImageInputSpec(BaseInterfaceInputSpec):
350351
in_file = InputMultiObject(File(exists=True),
351-
mandatory=True,
352-
desc=('4D EPI file. If multiple files '
353-
'are provided, they are assumed '
354-
'to represent multiple echoes '
355-
'from the same run.'))
352+
mandatory=True,
353+
desc=('4D EPI file. If multiple files '
354+
'are provided, they are assumed '
355+
'to represent multiple echoes '
356+
'from the same run.'))
356357
sbref_file = InputMultiObject(File(exists=True),
357-
desc=("Single band reference image. "
358-
"If multiple files are provided, "
359-
"they are assumed to represent "
360-
"multiple echoes."))
358+
desc=("Single band reference image. "
359+
"If multiple files are provided, "
360+
"they are assumed to represent "
361+
"multiple echoes."))
361362
mc_method = traits.Enum(
362363
"AFNI", "FSL", usedefault=True,
363364
desc="Which software to use to perform motion correction")

0 commit comments

Comments
 (0)