Skip to content

Commit 2e4bc83

Browse files
author
Fabio Bernardoni
committed
now black-reformatted
1 parent 9bcf65c commit 2e4bc83

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

nipype/interfaces/spm/preprocess.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,7 @@ def _list_outputs(self):
247247

248248
return outputs
249249

250+
250251
class ApplyVDMInputSpec(SPMCommandInputSpec):
251252

252253
in_files = InputMultiObject(
@@ -261,7 +262,7 @@ class ApplyVDMInputSpec(SPMCommandInputSpec):
261262
vdmfile = File(
262263
field="data.vdmfile",
263264
desc="Voxel displacement map to use",
264-
#mandatory=True,
265+
# mandatory=True,
265266
copyfile=True,
266267
)
267268
distortion_direction = traits.Int(
@@ -307,15 +308,15 @@ class ApplyVDMInputSpec(SPMCommandInputSpec):
307308
desc="fieldmap corrected output prefix",
308309
)
309310

311+
310312
class ApplyVDMOutputSpec(TraitedSpec):
311313
out_files = OutputMultiPath(
312314
traits.Either(traits.List(File(exists=True)), File(exists=True)),
313-
desc=(
314-
"These will be the fieldmap corrected files."
315-
),
315+
desc=("These will be the fieldmap corrected files."),
316316
)
317317
mean_image = File(exists=True, desc="Mean image")
318318

319+
319320
class ApplyVDM(SPMCommand):
320321
"""Use the fieldmap toolbox from spm to apply the voxel displacement map (VDM) to some epi files.
321322

0 commit comments

Comments
 (0)