Skip to content

Commit 691017c

Browse files
committed
Fix connection again!
1 parent 25c66f9 commit 691017c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

fmriprep/workflows/bold/base.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@
3131
"""
3232
import typing as ty
3333

34-
import nibabel as nb
35-
import numpy as np
3634
from nipype.interfaces import utility as niu
3735
from nipype.pipeline import engine as pe
3836
from niworkflows.utils.connections import listify
@@ -532,7 +530,9 @@ def init_bold_wf(
532530

533531
workflow.connect([
534532
(inputnode, goodvoxels_bold_mask_wf, [("anat_ribbon", "inputnode.anat_ribbon")]),
535-
(bold_anat_wf, goodvoxels_bold_mask_wf, [("bold_file", "inputnode.bold_file")]),
533+
(bold_anat_wf, goodvoxels_bold_mask_wf, [
534+
("outputnode.bold_file", "inputnode.bold_file"),
535+
]),
536536
(goodvoxels_bold_mask_wf, bold_fsLR_resampling_wf, [
537537
("outputnode.goodvoxels_mask", "inputnode.volume_roi"),
538538
]),

0 commit comments

Comments
 (0)