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 Aug 24, 2023
1 parent 0a735ed commit c741e34
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/spatialdata/datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,9 @@ def blobs(
) -> SpatialData:
"""Blobs dataset."""
image = self._image_blobs(self.transformations, self.length, self.n_channels, self.c_coords)
multiscale_image = self._image_blobs(self.transformations, self.length, self.n_channels, self.c_coords, multiscale=True)
multiscale_image = self._image_blobs(
self.transformations, self.length, self.n_channels, self.c_coords, multiscale=True
)
labels = self._labels_blobs(self.transformations, self.length)
multiscale_labels = self._labels_blobs(self.transformations, self.length, multiscale=True)
points = self._points_blobs(self.transformations, self.length, self.n_points)
Expand Down

0 comments on commit c741e34

Please sign in to comment.