Skip to content

Commit 8fb0140

Browse files
committed
fix mypy type check
1 parent 760f340 commit 8fb0140

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

earthaccess/dmrppzarr.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import annotations
22

3-
from typing import TYPE_CHECKING
3+
from typing import TYPE_CHECKING, Any
44

55
import earthaccess
66

@@ -15,7 +15,7 @@ def open_virtual_mfdataset(
1515
load: bool = False,
1616
preprocess: callable | None = None, # type: ignore
1717
parallel: bool = True,
18-
**xr_combine_nested_kwargs,
18+
**xr_combine_nested_kwargs: Any,
1919
) -> xr.Dataset:
2020
"""Open multiple granules as a single virtual xarray Dataset. WARNING: This feature is current experimental and may change in the future. This feature relies on dmr++ metadata files which may not always be present for your dataset.
2121

0 commit comments

Comments
 (0)