summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorBas van Beek <b.f.van.beek@vu.nl>2021-05-20 14:58:24 +0200
committerBas van Beek <b.f.van.beek@vu.nl>2021-05-20 16:27:11 +0200
commit4fc55f5100a5f39bd5fed657ad0bc593c2855527 (patch)
treef71ba8c66583f70fd3aef4c353da4146aaf12198 /numpy
parent2ab785320c2917cf836233177f691942c374ec04 (diff)
downloadnumpy-4fc55f5100a5f39bd5fed657ad0bc593c2855527.tar.gz
MAINT: Added a missing object to `npt.__all__`
Diffstat (limited to 'numpy')
-rw-r--r--numpy/typing/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/typing/__init__.py b/numpy/typing/__init__.py
index 4f0dc0cf1..173dbc229 100644
--- a/numpy/typing/__init__.py
+++ b/numpy/typing/__init__.py
@@ -173,7 +173,7 @@ else:
def final(f): return f
if not TYPE_CHECKING:
- __all__ = ["ArrayLike", "DTypeLike", "NBitBase"]
+ __all__ = ["ArrayLike", "DTypeLike", "NBitBase", "NDArray"]
else:
# Ensure that all objects within this module are accessible while
# static type checking. This includes private ones, as we need them