Skip to content

Commit

Permalink
Fix again.
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed Mar 29, 2024
1 parent 304531a commit 1672988
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions fmriprep/workflows/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,11 +185,7 @@ def init_single_subject_wf(

from fmriprep.workflows.bold.base import init_bold_wf

name = (
f'sub_{subject_id}_ses_{session_id}_wf'
if session_id
else f'sub_{subject_id}_wf'
)
name = f'sub_{subject_id}_ses_{session_id}_wf' if session_id else f'sub_{subject_id}_wf'

Check warning on line 188 in fmriprep/workflows/base.py

View check run for this annotation

Codecov / codecov/patch

fmriprep/workflows/base.py#L188

Added line #L188 was not covered by tests

workflow = Workflow(name=name)

Check warning on line 190 in fmriprep/workflows/base.py

View check run for this annotation

Codecov / codecov/patch

fmriprep/workflows/base.py#L190

Added line #L190 was not covered by tests
workflow.__desc__ = f"""
Expand Down

0 comments on commit 1672988

Please sign in to comment.