Skip to content

Commit

Permalink
updated imagingextractor.py docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
pauladkisson committed Aug 30, 2023
1 parent fb49473 commit 19150b2
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/roiextractors/imagingextractor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
"""Base class definitions for all ImagingExtractors."""
"""Base class definitions for all ImagingExtractors.
Classes
-------
ImagingExtractor
Abstract class that contains all the meta-data and input data from the imaging data.
FrameSliceImagingExtractor
Class to get a lazy frame slice.
"""
from abc import ABC, abstractmethod
from typing import Union, Optional, Tuple
from copy import deepcopy
Expand Down

0 comments on commit 19150b2

Please sign in to comment.