Skip to content

Commit dd22fe5

Browse files
committed
Remove type annotations
1 parent fb0a074 commit dd22fe5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

interpolation/multilinear/mlinterp.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def _mlinterp(grid, c, u):
4949
def ol_mlinterp(grid, c, u):
5050
if isinstance(u, UniTuple):
5151

52-
def mlininterp(grid: Tuple, c: Array, u: Tuple) -> float:
52+
def mlininterp(grid, c, u):
5353
# get indices and barycentric coordinates
5454
tmp = fmap(get_index, grid, u)
5555
indices, barycenters = funzip(tmp)
@@ -59,7 +59,7 @@ def mlininterp(grid: Tuple, c: Array, u: Tuple) -> float:
5959

6060
elif isinstance(u, Array) and u.ndim == 2:
6161

62-
def mlininterp(grid: Tuple, c: Array, u: Array) -> float:
62+
def mlininterp(grid, c, u):
6363
N = u.shape[0]
6464
res = np.zeros(N)
6565
for n in range(N):

0 commit comments

Comments
 (0)