Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed May 16, 2024
1 parent a904272 commit 66289fb
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ def __init__(self, folder_path: str, pattern: str, sampling_frequency: float):

self.folder_path = folder_path
self.tif_paths = match_paths(folder_path, pattern)
imaging_extractors = [TiffImagingExtractor(file_path=x, sampling_frequency=sampling_frequency) for x in self.tif_paths]
imaging_extractors = [
TiffImagingExtractor(file_path=x, sampling_frequency=sampling_frequency) for x in self.tif_paths
]
super().__init__(imaging_extractors=imaging_extractors)
self._kwargs.update({"folder_path": folder_path})

0 comments on commit 66289fb

Please sign in to comment.