Skip to content

Commit

Permalink
Run isort.
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed Nov 9, 2023
1 parent 168b247 commit 33fac77
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 3 additions & 1 deletion aslprep/workflows/asl/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,9 @@ def init_asl_preproc_wf(asl_file, has_fieldmap=False):
# Map final ASL mask into T1w space (if required)
nonstd_spaces = set(spaces.get_nonstandard())
if nonstd_spaces.intersection(("T1w", "anat")):
from niworkflows.interfaces.fixes import FixHeaderApplyTransforms as ApplyTransforms
from niworkflows.interfaces.fixes import (
FixHeaderApplyTransforms as ApplyTransforms,
)

aslmask_to_t1w = pe.Node(
ApplyTransforms(interpolation="MultiLabel"),
Expand Down
3 changes: 1 addition & 2 deletions aslprep/workflows/asl/registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,15 +247,14 @@ def init_asl_t1_trans_wf(
* :py:func:`~aslprep.workflows.asl.registration.init_fsl_bbr_wf`
"""
from fmriprep.interfaces.maths import Clip
from niworkflows.engine.workflows import LiterateWorkflow as Workflow
from niworkflows.func.util import init_bold_reference_wf
from niworkflows.interfaces.fixes import FixHeaderApplyTransforms as ApplyTransforms
from niworkflows.interfaces.itk import MultiApplyTransforms
from niworkflows.interfaces.nibabel import GenerateSamplingReference
from niworkflows.interfaces.nilearn import Merge

from fmriprep.interfaces.maths import Clip

workflow = Workflow(name=name)

inputnode = pe.Node(
Expand Down

0 comments on commit 33fac77

Please sign in to comment.