Skip to content

Commit

Permalink
removed init
Browse files Browse the repository at this point in the history
  • Loading branch information
pauladkisson committed Sep 30, 2024
1 parent 006b11a commit 53baa5d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
6 changes: 0 additions & 6 deletions src/roiextractors/imagingextractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 0 additions & 4 deletions src/roiextractors/segmentationextractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 53baa5d

Please sign in to comment.