diff options
author | Sebastian Berg <sebastianb@nvidia.com> | 2023-02-21 16:19:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-21 16:19:59 +0100 |
commit | 14e91c7475e5a18d86714c4dd7586ca4be995dfe (patch) | |
tree | d79573141b3507f7cdf489865b1e29ff9a41bac4 /numpy/array_api/_array_object.py | |
parent | 7664dc02156e6804ef5d4f7277d2abdc6ac3477e (diff) | |
parent | 8816c76631af79c46a8cf33ac1a8a79b2717c9ac (diff) | |
download | numpy-14e91c7475e5a18d86714c4dd7586ca4be995dfe.tar.gz |
Merge pull request #23256 from FrancescElies/cesc-set-generic-parameters-to-any
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. |