diff options
| author | Charles Harris <charlesr.harris@gmail.com> | 2021-01-19 09:00:24 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-19 09:00:24 -0700 |
| commit | 9c63473c30b773dcab7adf699e1bd5dfcbb46e9b (patch) | |
| tree | 270fae0c219805e262f86e4240d2f6835c950383 | |
| parent | da54e54cb7dac1c745bc2378769d192eb0dded5b (diff) | |
| parent | 8b8bbdfa5b5331811841176f64470521a890a7c0 (diff) | |
| download | numpy-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__.py | 4 |
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, |
