summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorBas van Beek <b.f.van.beek@vu.nl>2021-01-29 12:16:37 +0100
committerBas van Beek <b.f.van.beek@vu.nl>2021-01-29 12:16:37 +0100
commitd788788f8233d96e647c64bd4070305146b9ff92 (patch)
tree3e5b92f860064e5b1cbbc6d0e3c2d1c037407fa2 /numpy
parent856e09e6a6d113d71da56b3ccdcfab72f921d01f (diff)
downloadnumpy-d788788f8233d96e647c64bd4070305146b9ff92.tar.gz
MAINT: typo fix: `_UInt8Codes` -> `_Int8Codes`
Diffstat (limited to 'numpy')
-rw-r--r--numpy/typing/_dtype_like.py2
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,