Skip to content

Commit 78fb543

Browse files
committed
make specs
1 parent 94a3bea commit 78fb543

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

nipype/interfaces/ants/legacy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def _list_outputs(self):
9696
outputs = self._outputs().get()
9797
transmodel = self.inputs.transformation_model
9898

99-
# When transform is set as 'RI'/'RA', wrap fields should not be expected
99+
# When transform is set as 'RI'/'RA', wrap fields should not be expected
100100
# The default transformation is GR, which outputs the wrap fields
101101
if not isdefined(transmodel) or (isdefined(transmodel) and transmodel not in ['RI', 'RA']):
102102
outputs['warp_field'] = os.path.join(os.getcwd(),

nipype/interfaces/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -757,10 +757,10 @@ def _get_trait_desc(self, inputs, name, spec):
757757

758758
manhelpstr = ['\t%s' % name]
759759

760-
type_info = spec.full_info(inputs, name, None)
760+
type_info = spec.full_info(inputs, name, None)
761761
default = ', nipype default value: %s' % spec.default_value()[1]
762762
line = "(%s%s)" % (type_info, default if spec.usedefault else '')
763-
manhelpstr = wrap(line, 70,
763+
manhelpstr = wrap(line, 70,
764764
initial_indent=manhelpstr[0]+': ',
765765
subsequent_indent='\t\t ')
766766

0 commit comments

Comments
 (0)