diff options
author | Bas van Beek <43369155+BvB93@users.noreply.github.com> | 2021-06-05 23:35:11 +0200 |
---|---|---|
committer | Bas van Beek <43369155+BvB93@users.noreply.github.com> | 2021-06-05 23:35:11 +0200 |
commit | 7162dc3c9f3cc02434c50dfb4e55b790453c00a4 (patch) | |
tree | a1e42466dc626dc78986bec79bb8c0c9ff50bbe8 /numpy/typing/__init__.py | |
parent | f23ade75773f5e94c030c40cae5b6e081b650205 (diff) | |
download | numpy-7162dc3c9f3cc02434c50dfb4e55b790453c00a4.tar.gz |
REV,BUG: Replace `NotImplemented` with `typing.Any`
Diffstat (limited to 'numpy/typing/__init__.py')
-rw-r--r-- | numpy/typing/__init__.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/numpy/typing/__init__.py b/numpy/typing/__init__.py index 252123a19..19424169a 100644 --- a/numpy/typing/__init__.py +++ b/numpy/typing/__init__.py @@ -164,7 +164,7 @@ API # NOTE: The API section will be appended with additional entries # further down in this file -from typing import TYPE_CHECKING, List +from typing import TYPE_CHECKING, List, Any if TYPE_CHECKING: # typing_extensions is always available when type-checking @@ -376,14 +376,14 @@ if TYPE_CHECKING: _GUFunc_Nin2_Nout1, ) else: - _UFunc_Nin1_Nout1 = NotImplemented - _UFunc_Nin2_Nout1 = NotImplemented - _UFunc_Nin1_Nout2 = NotImplemented - _UFunc_Nin2_Nout2 = NotImplemented - _GUFunc_Nin2_Nout1 = NotImplemented + _UFunc_Nin1_Nout1 = Any + _UFunc_Nin2_Nout1 = Any + _UFunc_Nin1_Nout2 = Any + _UFunc_Nin2_Nout2 = Any + _GUFunc_Nin2_Nout1 = Any # Clean up the namespace -del TYPE_CHECKING, final, List +del TYPE_CHECKING, final, List, Any if __doc__ is not None: from ._add_docstring import _docstrings |