diff options
author | Aaron Meurer <asmeurer@gmail.com> | 2021-08-12 15:22:58 -0600 |
---|---|---|
committer | Aaron Meurer <asmeurer@gmail.com> | 2021-08-12 15:22:58 -0600 |
commit | d5956c170b07cf26b05c921d810dc387d7e819da (patch) | |
tree | ab27e6d3f2675249f0afe5890f951da5b9e7d3c2 /numpy/array_api/_array_object.py | |
parent | 8f7d00ed447174d9398af3365709222b529c1cad (diff) | |
download | numpy-d5956c170b07cf26b05c921d810dc387d7e819da.tar.gz |
Fix the return annotation for numpy.array_api.Array.__setitem__
Diffstat (limited to 'numpy/array_api/_array_object.py')
-rw-r--r-- | numpy/array_api/_array_object.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/array_api/_array_object.py b/numpy/array_api/_array_object.py index 0f511a577..2d746e78b 100644 --- a/numpy/array_api/_array_object.py +++ b/numpy/array_api/_array_object.py @@ -647,7 +647,7 @@ class Array: ], value: Union[int, float, bool, Array], /, - ) -> Array: + ) -> None: """ Performs the operation __setitem__. """ |