Skip to content

Commit 388259b

Browse files
committed
fix: missing import
1 parent ecac540 commit 388259b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/pipeline/engine/tests/test_join.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ def nested_wf(i, name='smallwf'):
627627
wf.connect(pre_join, 'output1', join, 'n')
628628
return wf
629629
# master wf
630-
meta_wf = Workflow(name='meta', base_dir='.')
630+
meta_wf = pe.Workflow(name='meta', base_dir='.')
631631
# add each mini-workflow to master
632632
for i in [[1,3],[2,4]]:
633633
mini_wf = nested_wf(i)

0 commit comments

Comments
 (0)