Skip to content

Commit

Permalink
Fix ZarrTIFFWSIReader code.
Browse files Browse the repository at this point in the history
  • Loading branch information
aacic committed Dec 12, 2024
1 parent 26cd2df commit bfa8b4b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tiatoolbox/wsicore/wsireader.py
Original file line number Diff line number Diff line change
Expand Up @@ -4301,7 +4301,7 @@ def __init__(
)

def _canonical_shape(self: ZarrTIFFWSIReader, shape: IntPair) -> tuple:
# Copy/paste from TIFFWSIReader._canonical_shape, clean it up
# Copy/paste from TIFFWSIReader, clean it up
"""Make a level shape tuple in YXS order.
Args:
Expand Down Expand Up @@ -4368,7 +4368,7 @@ def read_rect(
coord_space: str = "baseline",
**kwargs: dict, # noqa: ARG002
) -> np.ndarray:
# Copy/paste from TIFFWSIReader._canonical_shape, clean it up
# Copy/paste from TIFFWSIReader, clean it up
"""Read a region of the whole slide image at a location and size.
Location is in terms of the baseline image (level 0 / maximum
Expand Down Expand Up @@ -4605,7 +4605,7 @@ def read_bounds(
coord_space: str = "baseline",
**kwargs: dict,
) -> np.ndarray:
# Copy/paste from TIFFWSIReader._canonical_shape, clean it up
# Copy/paste from TIFFWSIReader, clean it up
"""Read a region of the whole slide image within given bounds.
Bounds are in terms of the baseline image (level 0 / maximum
Expand Down

0 comments on commit bfa8b4b

Please sign in to comment.