Skip to content

Commit 1fa23b9

Browse files
committed
conform with new style rules
1 parent 0767f70 commit 1fa23b9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

smriprep/cli/run.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ def get_parser():
215215
'(default: OUTPUT_DIR/freesurfer)',
216216
)
217217
g_fs.add_argument(
218-
"--fs-reuse-base",
218+
'--fs-reuse-base',
219219
action='store_true',
220220
dest='fs_reuse_base',
221221
help='Reuse freesurfer base template'

smriprep/workflows/surfaces.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -248,21 +248,21 @@ def init_surface_recon_wf(
248248

249249
if not fs_reuse_base:
250250

251-
recon_config = pe.Node(FSDetectInputs(hires_enabled=hires), name="recon_config")
251+
recon_config = pe.Node(FSDetectInputs(hires_enabled=hires), name='recon_config')
252252

253-
fov_check = pe.Node(niu.Function(function=_check_cw256), name="fov_check")
253+
fov_check = pe.Node(niu.Function(function=_check_cw256), name='fov_check')
254254
fov_check.inputs.default_flags = ['-noskullstrip', '-noT2pial', '-noFLAIRpial']
255255

256256
autorecon1 = pe.Node(
257-
ReconAll(directive="autorecon1", openmp=omp_nthreads),
258-
name="autorecon1",
257+
ReconAll(directive='autorecon1', openmp=omp_nthreads),
258+
name='autorecon1',
259259
n_procs=omp_nthreads,
260260
mem_gb=5,
261261
)
262262
autorecon1.interface._can_resume = False
263263
autorecon1.interface._always_run = True
264264

265-
skull_strip_extern = pe.Node(FSInjectBrainExtracted(), name="skull_strip_extern")
265+
skull_strip_extern = pe.Node(FSInjectBrainExtracted(), name='skull_strip_extern')
266266

267267
autorecon_resume_wf = init_autorecon_resume_wf(omp_nthreads=omp_nthreads)
268268

0 commit comments

Comments
 (0)