Skip to content

Commit c64dace

Browse files
committed
Remove typevars
1 parent b8678a9 commit c64dace

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/parcels/_datasets/utils.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
from collections.abc import Hashable
2-
from typing import Any, Literal, TypeVar
2+
from typing import Any, Literal
33

44
import numpy as np
55
import xarray as xr
66

77
_SUPPORTED_ATTR_TYPES = int | float | str | np.ndarray
8-
K = TypeVar("K")
9-
V = TypeVar("V")
108

119

1210
def _print_mismatched_keys(d1: dict[Any, Any], d2: dict[Any, Any]) -> None:

0 commit comments

Comments
 (0)