Skip to content

Commit 84650c4

Browse files
committed
Fix mypy typing failure
1 parent b94e663 commit 84650c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

odc/geo/_dask.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from functools import partial
2-
from typing import Any, Dict, Optional, Sequence, Tuple, Union
2+
from typing import Any, Dict, Optional, Tuple, Union
33
from uuid import uuid4
44

55
import dask.array as da
@@ -15,7 +15,7 @@
1515

1616

1717
def _do_chunked_reproject(
18-
d2s: Dict[Tuple[int, int], Sequence[Tuple[int, int]]],
18+
d2s: Dict[Tuple[int, int], list[Tuple[int, int]]],
1919
src_gbt: GeoboxTiles,
2020
dst_gbt: GeoboxTiles,
2121
dst_idx: Tuple[int, int],

0 commit comments

Comments
 (0)