Skip to content

Commit 05fe7dd

Browse files
committed
Fix import issue
1 parent 3d83723 commit 05fe7dd

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

wsidata/_accessors/iter.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
from shapely.affinity import translate, scale
99

1010
from .._normalizer import ColorNormalizer
11-
from .._model import TileSpec
1211

1312

1413
class TissueContour(NamedTuple):
@@ -277,7 +276,7 @@ def tile_images(
277276
- anno_shapes: The annotation shapes.
278277
279278
"""
280-
tile_spec: TileSpec = self._obj.tile_spec(key)
279+
tile_spec = self._obj.tile_spec(key)
281280

282281
if color_norm is not None:
283282
cn = ColorNormalizer(method=color_norm)

0 commit comments

Comments
 (0)