standalone: Fix redefinition of ndarray consumer functions

pull/373/head
David Mak 2023-12-28 22:50:39 +02:00
parent ab3fa05996
commit c679474f5c
1 changed files with 0 additions and 6 deletions

View File

@ -7,12 +7,6 @@ def consume_ndarray_i32_1(n: ndarray[int32, Literal[1]]):
def consume_ndarray_2(n: ndarray[float, Literal[2]]):
pass
def consume_ndarray_i32_1(n: ndarray[int32, 1]):
pass
def consume_ndarray_2(n: ndarray[float, 2]):
pass
def test_ndarray_ctor():
n = np_ndarray([1])
consume_ndarray_1(n)