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 3ec8065 commit 7eb9d03Copy full SHA for 7eb9d03
nipype/interfaces/base/specs.py
@@ -72,6 +72,7 @@ def __init__(self, **kwargs):
72
self.trait_set(trait_change_notify=False, **undefined_traits)
73
self._generate_handlers()
74
self.trait_set(**kwargs)
75
+ self.__all__ = self.class_editable_traits()
76
77
def items(self):
78
""" Name, trait generator for user modifiable traits
@@ -351,6 +352,7 @@ def __deepcopy__(self, memo):
351
352
# clone twice
353
dup = self.clone_traits(memo=memo)
354
dup.trait_set(**dup_dict)
355
+ self.__all__ = super(BaseTraitedSpec,self).__all__
356
return dup
357
358
0 commit comments