diff options
author | Bas van Beek <b.f.van.beek@vu.nl> | 2021-01-29 12:16:37 +0100 |
---|---|---|
committer | Bas van Beek <b.f.van.beek@vu.nl> | 2021-01-29 12:16:37 +0100 |
commit | d788788f8233d96e647c64bd4070305146b9ff92 (patch) | |
tree | 3e5b92f860064e5b1cbbc6d0e3c2d1c037407fa2 /numpy | |
parent | 856e09e6a6d113d71da56b3ccdcfab72f921d01f (diff) | |
download | numpy-d788788f8233d96e647c64bd4070305146b9ff92.tar.gz |
MAINT: typo fix: `_UInt8Codes` -> `_Int8Codes`
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/typing/_dtype_like.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/typing/_dtype_like.py b/numpy/typing/_dtype_like.py index 9b79f9b68..f86b4a67c 100644 --- a/numpy/typing/_dtype_like.py +++ b/numpy/typing/_dtype_like.py @@ -154,7 +154,7 @@ _DTypeLikeInt = Union[ Type[np.signedinteger], "np.dtype[np.signedinteger]", "_SupportsDType[np.dtype[np.signedinteger]]", - _UInt8Codes, + _Int8Codes, _Int16Codes, _Int32Codes, _Int64Codes, |