File tree Expand file tree Collapse file tree 2 files changed +0
-7
lines changed
Expand file tree Collapse file tree 2 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,6 @@ async def fetch_tile(
8989 return Tile (
9090 x = x ,
9191 y = y ,
92- _ifd = self ._ifd ,
9392 array = array ,
9493 )
9594
@@ -140,7 +139,6 @@ async def fetch_tiles(
140139 tile = Tile (
141140 x = x ,
142141 y = y ,
143- _ifd = self ._ifd ,
144142 array = array ,
145143 )
146144 final_tiles .append (tile )
Original file line number Diff line number Diff line change 44from typing import TYPE_CHECKING
55
66if TYPE_CHECKING :
7- from async_tiff import ImageFileDirectory
8-
97 from async_geotiff ._array import Array
108
119
@@ -19,8 +17,5 @@ class Tile:
1917 y : int
2018 """The tile row index in the GeoTIFF or overview."""
2119
22- _ifd : ImageFileDirectory
23- """A reference to the IFD this tile belongs to."""
24-
2520 array : Array
2621 """The array data for this tile."""
You can’t perform that action at this time.
0 commit comments