Skip to content

Commit e835e95

Browse files
authored
chore: Remove IFD reference from Tile (#91)
1 parent d53166c commit e835e95

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

src/async_geotiff/_fetch.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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)

src/async_geotiff/_tile.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
from typing import TYPE_CHECKING
55

66
if 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."""

0 commit comments

Comments
 (0)