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 f273d18 commit f5e5f13Copy full SHA for f5e5f13
nipype/pipeline/engine/nodes.py
@@ -219,7 +219,7 @@ def needed_outputs(self):
219
@needed_outputs.setter
220
def needed_outputs(self, new_outputs):
221
"""Needed outputs changes the hash, refresh if changed"""
222
- new_outputs = sorted(new_outputs or [])
+ new_outputs = sorted(list(set(new_outputs or [])))
223
if new_outputs != self._needed_outputs:
224
# Reset hash
225
self._hashvalue = None
0 commit comments