You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: earthaccess/dmrppzarr.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
from __future__ importannotations
2
2
3
-
fromtypingimportTYPE_CHECKING
3
+
fromtypingimportTYPE_CHECKING, Any
4
4
5
5
importearthaccess
6
6
@@ -15,7 +15,7 @@ def open_virtual_mfdataset(
15
15
load: bool=False,
16
16
preprocess: callable|None=None, # type: ignore
17
17
parallel: bool=True,
18
-
**xr_combine_nested_kwargs,
18
+
**xr_combine_nested_kwargs: Any,
19
19
) ->xr.Dataset:
20
20
"""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.
0 commit comments