From c679474f5c9934781e13adebf282fdf6931bf22c Mon Sep 17 00:00:00 2001 From: David Mak Date: Thu, 28 Dec 2023 22:50:39 +0200 Subject: [PATCH] standalone: Fix redefinition of ndarray consumer functions --- nac3standalone/demo/src/ndarray.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/nac3standalone/demo/src/ndarray.py b/nac3standalone/demo/src/ndarray.py index 1ab153b..98794a7 100644 --- a/nac3standalone/demo/src/ndarray.py +++ b/nac3standalone/demo/src/ndarray.py @@ -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)