Skip to content

Commit 240917d

Browse files
authored
LNT: Ignore mypy error (#887)
1 parent 47b5afa commit 240917d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rioxarray/_io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -932,7 +932,7 @@ def _prepare_dask(
932932
previous_chunks=block_shape,
933933
)
934934
# xarray wants chunks as a dict rather than a tuple
935-
chunks = dict(zip(result.dims, chunks, strict=True))
935+
chunks = dict(zip(result.dims, chunks, strict=True)) # type: ignore[arg-type]
936936

937937
token_filename = filename
938938
if bidx is not None:

0 commit comments

Comments
 (0)