Skip to content

Commit 3904955

Browse files
bpinsardchrisgorgo
authored andcommitted
utils.Merge option for not flattening the output list
1 parent ef3025b commit 3904955

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/utility.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def _list_outputs(self):
8080
class MergeInputSpec(DynamicTraitedSpec, BaseInterfaceInputSpec):
8181
axis = traits.Enum('vstack', 'hstack', usedefault=True,
8282
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')
83+
no_flatten = traits.Bool(desc='append to outlist instead of extending in vstack mode')
8484

8585
class MergeOutputSpec(TraitedSpec):
8686
out = traits.List(desc='Merged output')

0 commit comments

Comments
 (0)