Skip to content

Commit

Permalink
manually undo accidental linting
Browse files Browse the repository at this point in the history
  • Loading branch information
psadil committed Oct 16, 2024
1 parent d66c86e commit 0275bb2
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions sdcflows/workflows/fit/pepolar.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,27 +88,21 @@ def init_topup_wf(
"""
from nipype.interfaces.fsl.epi import TOPUP
from niworkflows.interfaces.images import RobustAverage
from niworkflows.interfaces.nibabel import MergeSeries, ReorientImage
from niworkflows.interfaces.images import RobustAverage

from ...interfaces.bspline import TOPUPCoeffReorient
from ...interfaces.epi import GetReadoutTime, SortPEBlips
from ...interfaces.utils import (
PadSlices,
ReorientImageAndMetadata,
UniformGrid,
)
from ...utils.misc import front as _front
from ...interfaces.epi import GetReadoutTime, SortPEBlips
from ...interfaces.utils import UniformGrid, PadSlices, ReorientImageAndMetadata
from ...interfaces.bspline import TOPUPCoeffReorient
from ..ancillary import init_brainextraction_wf

workflow = Workflow(name=name)
workflow.__desc__ = f"""\
{_PEPOLAR_DESC} with `topup` (@topup; FSL {TOPUP().version}).
"""

inputnode = pe.Node(
niu.IdentityInterface(fields=INPUT_FIELDS), name="inputnode"
)
inputnode = pe.Node(niu.IdentityInterface(fields=INPUT_FIELDS), name="inputnode")
outputnode = pe.Node(
niu.IdentityInterface(
fields=[
Expand Down

0 comments on commit 0275bb2

Please sign in to comment.