diff options
author | Francesc Elies <elies@posteo.net> | 2023-02-21 14:50:04 +0100 |
---|---|---|
committer | Francesc Elies <elies@posteo.net> | 2023-02-21 14:50:04 +0100 |
commit | 8816c76631af79c46a8cf33ac1a8a79b2717c9ac (patch) | |
tree | fe9e98ee13371e34049ce4b0080adc4717ed5188 /numpy/array_api/_array_object.py | |
parent | b657a75ca651368b2d29c221287046333c3f7580 (diff) | |
download | numpy-8816c76631af79c46a8cf33ac1a8a79b2717c9ac.tar.gz |
TYP,MAINT: Add a missing explicit Any parameter
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 c4746fad9..eee117be6 100644 --- a/numpy/array_api/_array_object.py +++ b/numpy/array_api/_array_object.py @@ -56,7 +56,7 @@ class Array: functions, such as asarray(). """ - _array: np.ndarray + _array: np.ndarray[Any, Any] # Use a custom constructor instead of __init__, as manually initializing # this class is not supported API. |