Skip to content

Commit d622879

Browse files
committed
fix formatting and tests
1 parent 67afdcc commit d622879

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

docs/workflows.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ is presented below:
5858
use_aroma=False,
5959
use_bbr=True,
6060
use_syn=True,
61+
bids_filters=None,
6162
)
6263

6364
T1w/T2w preprocessing

fmriprep/workflows/base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,8 @@ def init_single_subject_wf(
471471
'bold': ['/completely/made/up/path/sub-01_task-nback_bold.nii.gz']
472472
}
473473
else:
474-
subject_data = collect_data(layout, subject_id, task_id, echo_idx, bids_filters=bids_filters)[0]
474+
subject_data = collect_data(layout, subject_id, task_id, echo_idx,
475+
bids_filters=bids_filters)[0]
475476

476477
# Make sure we always go through these two checks
477478
if not anat_only and subject_data['bold'] == []:

0 commit comments

Comments
 (0)