We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef3025b commit 3904955Copy full SHA for 3904955
nipype/interfaces/utility.py
@@ -80,7 +80,7 @@ def _list_outputs(self):
80
class MergeInputSpec(DynamicTraitedSpec, BaseInterfaceInputSpec):
81
axis = traits.Enum('vstack', 'hstack', usedefault=True,
82
desc='direction in which to merge, hstack requires same number of elements in each input')
83
- no_flatten = trait.Bool(desc='append to outlist instead of extending in vstack mode')
+ no_flatten = traits.Bool(desc='append to outlist instead of extending in vstack mode')
84
85
class MergeOutputSpec(TraitedSpec):
86
out = traits.List(desc='Merged output')
0 commit comments