diff options
author | Bas van Beek <43369155+BvB93@users.noreply.github.com> | 2021-09-27 14:44:46 +0200 |
---|---|---|
committer | Bas van Beek <43369155+BvB93@users.noreply.github.com> | 2021-09-27 14:52:06 +0200 |
commit | dc69553ef179b6713d85ec747e6d030dd7087f05 (patch) | |
tree | d4b3b2e951269c28b947ab16a15a6be30465ef76 /numpy/array_api/_creation_functions.py | |
parent | 4f7e991960c24fc9548f8f3d6d5f8967c2ece84a (diff) | |
download | numpy-dc69553ef179b6713d85ec747e6d030dd7087f05.tar.gz |
MAINT: Remove the `Sequence` encapsulation from variadic arguments
Diffstat (limited to 'numpy/array_api/_creation_functions.py')
-rw-r--r-- | numpy/array_api/_creation_functions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/array_api/_creation_functions.py b/numpy/array_api/_creation_functions.py index 9f8136267..8a23cd88e 100644 --- a/numpy/array_api/_creation_functions.py +++ b/numpy/array_api/_creation_functions.py @@ -232,7 +232,7 @@ def linspace( return Array._new(np.linspace(start, stop, num, dtype=dtype, endpoint=endpoint)) -def meshgrid(*arrays: Sequence[Array], indexing: str = "xy") -> List[Array, ...]: +def meshgrid(*arrays: Array, indexing: str = "xy") -> List[Array]: """ Array API compatible wrapper for :py:func:`np.meshgrid <numpy.meshgrid>`. |