Skip to content

Commit

Permalink
fix mypy type check
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushnag committed Dec 6, 2024
1 parent 760f340 commit 8fb0140
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions earthaccess/dmrppzarr.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import annotations

from typing import TYPE_CHECKING
from typing import TYPE_CHECKING, Any

import earthaccess

Expand All @@ -15,7 +15,7 @@ def open_virtual_mfdataset(
load: bool = False,
preprocess: callable | None = None, # type: ignore
parallel: bool = True,
**xr_combine_nested_kwargs,
**xr_combine_nested_kwargs: Any,
) -> xr.Dataset:
"""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.
Expand Down

0 comments on commit 8fb0140

Please sign in to comment.