Skip to content

Commit 0cd125d

Browse files
STY: Further simplification
Co-authored-by: Chris Markiewicz <[email protected]>
1 parent 840997a commit 0cd125d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/utility/wrappers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def __init__(
9797
self._output_names = ensure_list(output_names)
9898
add_traits(self.inputs, self._input_names)
9999
self.imports = imports
100-
self._out = {}
100+
self._out = {name: None for name in self._output_names}
101101
for name in self._output_names:
102102
self._out[name] = None
103103

0 commit comments

Comments
 (0)