summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2021-01-19 09:00:24 -0700
committerGitHub <noreply@github.com>2021-01-19 09:00:24 -0700
commit9c63473c30b773dcab7adf699e1bd5dfcbb46e9b (patch)
tree270fae0c219805e262f86e4240d2f6835c950383
parentda54e54cb7dac1c745bc2378769d192eb0dded5b (diff)
parent8b8bbdfa5b5331811841176f64470521a890a7c0 (diff)
downloadnumpy-9c63473c30b773dcab7adf699e1bd5dfcbb46e9b.tar.gz
Merge pull request #18191 from pmav99/panos/fix_18190
STY: Use explicit reexports for numpy.typing objects
-rw-r--r--numpy/typing/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/typing/__init__.py b/numpy/typing/__init__.py
index 97b87a682..3cfdfe50a 100644
--- a/numpy/typing/__init__.py
+++ b/numpy/typing/__init__.py
@@ -295,9 +295,9 @@ from ._scalars import (
_VoidLike_co,
)
from ._shape import _Shape, _ShapeLike
-from ._dtype_like import _SupportsDType, _VoidDTypeLike, DTypeLike
+from ._dtype_like import _SupportsDType, _VoidDTypeLike, DTypeLike as DTypeLike
from ._array_like import (
- ArrayLike,
+ ArrayLike as ArrayLike,
_ArrayLike,
_NestedSequence,
_SupportsArray,