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 e2a996e commit 176cff0Copy full SHA for 176cff0
nipype/pipeline/engine/utils.py
@@ -753,7 +753,7 @@ def _merge_graphs(
753
# nodes of the supergraph.
754
supernodes = supergraph.nodes()
755
ids = [n._hierarchy + n._id for n in supernodes]
756
- if len(np.unique(ids)) != len(ids):
+ if len(set(ids)) != len(ids):
757
# This should trap the problem of miswiring when multiple iterables are
758
# used at the same level. The use of the template below for naming
759
# updates to nodes is the general solution.
0 commit comments