Skip to content

Commit

Permalink
FIX: Update imports from module with __all__ defined
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies committed Aug 18, 2023
1 parent 578a4ad commit 9b1249a
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions niworkflows/interfaces/reportlets/registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
)
from nipype.interfaces.mixins import reporting
from nipype.interfaces import freesurfer as fs
from nipype.interfaces import fsl, ants
from nipype.interfaces import fsl
from nipype.interfaces.ants import registration, resampling

from ... import NIWORKFLOWS_LOG
from . import base as nrb
Expand Down Expand Up @@ -82,13 +83,13 @@ def _post_run_hook(self, runtime):


class _ANTSRegistrationInputSpecRPT(
nrb._SVGReportCapableInputSpec, ants.registration.RegistrationInputSpec
nrb._SVGReportCapableInputSpec, registration.RegistrationInputSpec
):
pass


class _ANTSRegistrationOutputSpecRPT(
reporting.ReportCapableOutputSpec, ants.registration.RegistrationOutputSpec
reporting.ReportCapableOutputSpec, registration.RegistrationOutputSpec
):
pass

Expand All @@ -110,13 +111,13 @@ def _post_run_hook(self, runtime):


class _ANTSApplyTransformsInputSpecRPT(
nrb._SVGReportCapableInputSpec, ants.resampling.ApplyTransformsInputSpec
nrb._SVGReportCapableInputSpec, resampling.ApplyTransformsInputSpec
):
pass


class _ANTSApplyTransformsOutputSpecRPT(
reporting.ReportCapableOutputSpec, ants.resampling.ApplyTransformsOutputSpec
reporting.ReportCapableOutputSpec, resampling.ApplyTransformsOutputSpec
):
pass

Expand Down

0 comments on commit 9b1249a

Please sign in to comment.