Skip to content

Commit 7bbf5c5

Browse files
committed
fix typo
1 parent 2e37161 commit 7bbf5c5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

niworkflows/interfaces/gradunwarp.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,12 @@ class _GradUnwarpInputSpec(TraitedSpec):
3434
infile = File(exists=True, mandatory=True, desc="input image to be corrected")
3535
gradfile = File(exists=True, default=None, desc="gradient file")
3636
coeffile = File(exists=True, default=None, desc="coefficients file")
37-
outfile = File(name_source=['in_file'], name_template=['%s_gradunwarped', keep_extension=True, desc="output corrected image")
37+
outfile = File(
38+
name_source=['in_file'],
39+
name_template=['%s_gradunwarped'],
40+
keep_extension=True,
41+
desc="output corrected image"
42+
)
3843
vendor = traits.Enum("siemens", "ge", usedefault=True, desc="scanner vendor")
3944
warp = traits.Bool(desc="warp a volume (as opposed to unwarping)")
4045
nojac = traits.Bool(desc="Do not perform Jacobian intensity correction")

0 commit comments

Comments
 (0)