File tree 3 files changed +4
-5
lines changed
3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ def _drop_sub(value):
98
98
return value [4 :] if value .startswith ('sub-' ) else value
99
99
100
100
def _drop_ses (value ):
101
- return value [4 :] if value .startswith (" ses-" ) else value
101
+ return value [4 :] if value .startswith (' ses-' ) else value
102
102
103
103
def _process_value (value ):
104
104
import bids
@@ -934,7 +934,7 @@ def parse_args(args=None, namespace=None):
934
934
935
935
def compute_subworkflows (
936
936
* ,
937
- layout : ' BIDSLayout' ,
937
+ layout : BIDSLayout ,
938
938
participant_ids : list ,
939
939
session_ids : list | None = None ,
940
940
) -> list :
Original file line number Diff line number Diff line change 35
35
def build_workflow (config_file , retval ):
36
36
"""Create the Nipype Workflow that supports the whole execution graph."""
37
37
38
- from niworkflows .utils .bids import collect_participants
39
38
from niworkflows .utils .misc import check_valid_fs_license
40
39
41
40
from fmriprep .reports .core import generate_reports
Original file line number Diff line number Diff line change @@ -186,9 +186,9 @@ def init_single_subject_wf(
186
186
from fmriprep .workflows .bold .base import init_bold_wf
187
187
188
188
name = (
189
- f" sub_{ subject_id } _ses_{ session_id } _wf"
189
+ f' sub_{ subject_id } _ses_{ session_id } _wf'
190
190
if session_id
191
- else f" sub_{ subject_id } _wf"
191
+ else f' sub_{ subject_id } _wf'
192
192
)
193
193
194
194
workflow = Workflow (name = name )
You can’t perform that action at this time.
0 commit comments