File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 55
55
def init_bold_wf (
56
56
* ,
57
57
bold_series : list [str ],
58
- precomputed : dict = None ,
58
+ precomputed : dict | None = None ,
59
59
fieldmap_id : str | None = None ,
60
60
jacobian : bool = False ,
61
61
) -> pe .Workflow :
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ def get_sbrefs(
94
94
def init_bold_fit_wf (
95
95
* ,
96
96
bold_series : list [str ],
97
- precomputed : dict = None ,
97
+ precomputed : dict | None = None ,
98
98
fieldmap_id : str | None = None ,
99
99
jacobian : bool = False ,
100
100
omp_nthreads : int = 1 ,
Original file line number Diff line number Diff line change @@ -115,9 +115,9 @@ def _make_params(
115
115
skull_strip_t1w : str = 'auto' ,
116
116
use_syn_sdc : str | bool = False ,
117
117
freesurfer : bool = True ,
118
- ignore : list [str ] = None ,
119
- force : list [str ] = None ,
120
- bids_filters : dict = None ,
118
+ ignore : list [str ] | None = None ,
119
+ force : list [str ] | None = None ,
120
+ bids_filters : dict | None = None ,
121
121
):
122
122
if ignore is None :
123
123
ignore = []
You can’t perform that action at this time.
0 commit comments