Skip to content

Commit

Permalink
Fix mypy typing failure
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgleith committed Oct 1, 2024
1 parent b94e663 commit 84650c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions odc/geo/_dask.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from functools import partial
from typing import Any, Dict, Optional, Sequence, Tuple, Union
from typing import Any, Dict, Optional, Tuple, Union
from uuid import uuid4

import dask.array as da
Expand All @@ -15,7 +15,7 @@


def _do_chunked_reproject(
d2s: Dict[Tuple[int, int], Sequence[Tuple[int, int]]],
d2s: Dict[Tuple[int, int], list[Tuple[int, int]]],
src_gbt: GeoboxTiles,
dst_gbt: GeoboxTiles,
dst_idx: Tuple[int, int],
Expand Down

0 comments on commit 84650c4

Please sign in to comment.