Skip to content

Commit

Permalink
fix circular import error
Browse files Browse the repository at this point in the history
  • Loading branch information
luiztauffer committed Dec 19, 2023
1 parent ecb63d6 commit a826f30
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 16 deletions.
7 changes: 0 additions & 7 deletions src/jazayeri_lab_to_nwb/watters/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +0,0 @@
from .wattersbehaviorinterface import (
WattersEyePositionInterface,
WattersPupilSizeInterface,
)
from .wattersnwbconverter import WattersNWBConverter
from .wattersrecordinginterface import WattersDatRecordingInterface
from .watterstrialsinterface import WattersTrialsInterface
13 changes: 4 additions & 9 deletions src/jazayeri_lab_to_nwb/watters/wattersnwbconverter.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,18 @@
KiloSortSortingInterface,
SpikeGLXRecordingInterface,
)
from neuroconv.datainterfaces.ecephys.baserecordingextractorinterface import (
BaseRecordingExtractorInterface,
)
from neuroconv.datainterfaces.ecephys.basesortingextractorinterface import (
BaseSortingExtractorInterface,
)
from neuroconv.datainterfaces.ecephys.basesortingextractorinterface import BaseSortingExtractorInterface
from neuroconv.datainterfaces.text.timeintervalsinterface import TimeIntervalsInterface
from neuroconv.utils import FolderPathType
from spikeinterface.core.waveform_tools import has_exceeding_spikes
from spikeinterface.curation import remove_excess_spikes

from . import (
WattersDatRecordingInterface,
from .wattersbehaviorinterface import (
WattersEyePositionInterface,
WattersPupilSizeInterface,
WattersTrialsInterface,
)
from .wattersrecordinginterface import WattersDatRecordingInterface
from .watterstrialsinterface import WattersTrialsInterface


class WattersNWBConverter(NWBConverter):
Expand Down

0 comments on commit a826f30

Please sign in to comment.