From 53baa5deae1575579d7645075678c104090a9709 Mon Sep 17 00:00:00 2001 From: pauladkisson Date: Mon, 30 Sep 2024 10:01:33 -0700 Subject: [PATCH] removed init --- src/roiextractors/imagingextractor.py | 6 ------ src/roiextractors/segmentationextractor.py | 4 ---- 2 files changed, 10 deletions(-) diff --git a/src/roiextractors/imagingextractor.py b/src/roiextractors/imagingextractor.py index 2bb2438c..987eea63 100644 --- a/src/roiextractors/imagingextractor.py +++ b/src/roiextractors/imagingextractor.py @@ -21,12 +21,6 @@ class ImagingExtractor(BaseExtractor): """Abstract class that contains all the meta-data and input data from the imaging data.""" - def __init__(self, *args, **kwargs) -> None: - """Initialize the ImagingExtractor object.""" - self._args = args - self._kwargs = kwargs - self._times = None - @abstractmethod def get_dtype(self) -> DtypeType: """Get the data type of the video. diff --git a/src/roiextractors/segmentationextractor.py b/src/roiextractors/segmentationextractor.py index 1bd694ed..2989f9c3 100644 --- a/src/roiextractors/segmentationextractor.py +++ b/src/roiextractors/segmentationextractor.py @@ -32,10 +32,6 @@ class SegmentationExtractor(BaseExtractor): format specific classes that inherit from this. """ - def __init__(self): - """Create a new SegmentationExtractor for a specific data format (unique to each child SegmentationExtractor).""" - self._times = None - @abstractmethod def get_roi_ids(self) -> list: """Get the list of ROI ids.