Skip to content

Commit 0275bb2

Browse files
committed
manually undo accidental linting
1 parent d66c86e commit 0275bb2

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

sdcflows/workflows/fit/pepolar.py

+5-11
Original file line numberDiff line numberDiff line change
@@ -88,27 +88,21 @@ def init_topup_wf(
8888
8989
"""
9090
from nipype.interfaces.fsl.epi import TOPUP
91-
from niworkflows.interfaces.images import RobustAverage
9291
from niworkflows.interfaces.nibabel import MergeSeries, ReorientImage
92+
from niworkflows.interfaces.images import RobustAverage
9393

94-
from ...interfaces.bspline import TOPUPCoeffReorient
95-
from ...interfaces.epi import GetReadoutTime, SortPEBlips
96-
from ...interfaces.utils import (
97-
PadSlices,
98-
ReorientImageAndMetadata,
99-
UniformGrid,
100-
)
10194
from ...utils.misc import front as _front
95+
from ...interfaces.epi import GetReadoutTime, SortPEBlips
96+
from ...interfaces.utils import UniformGrid, PadSlices, ReorientImageAndMetadata
97+
from ...interfaces.bspline import TOPUPCoeffReorient
10298
from ..ancillary import init_brainextraction_wf
10399

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

109-
inputnode = pe.Node(
110-
niu.IdentityInterface(fields=INPUT_FIELDS), name="inputnode"
111-
)
105+
inputnode = pe.Node(niu.IdentityInterface(fields=INPUT_FIELDS), name="inputnode")
112106
outputnode = pe.Node(
113107
niu.IdentityInterface(
114108
fields=[

0 commit comments

Comments
 (0)