Skip to content

Commit

Permalink
make static method static (#334)
Browse files Browse the repository at this point in the history
Co-authored-by: Cody Baker <[email protected]>
  • Loading branch information
bendichter and CodyCBakerPhD authored May 20, 2024
1 parent b5952ca commit c184754
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/roiextractors/volumetricimagingextractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ def __init__(self, imaging_extractors: List[ImagingExtractor]):
self._imaging_extractors = imaging_extractors
self._num_planes = len(imaging_extractors)

def _check_consistency_between_imaging_extractors(self, imaging_extractors: List[ImagingExtractor]):
@staticmethod
def _check_consistency_between_imaging_extractors(imaging_extractors: List[ImagingExtractor]):
"""Check that essential properties are consistent between extractors so that they can be combined appropriately.
Parameters
Expand Down

0 comments on commit c184754

Please sign in to comment.