diff options
| author | Charles Harris <charlesr.harris@gmail.com> | 2021-02-02 15:06:41 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-02 15:06:41 -0700 |
| commit | 80ffa42124541d5a82f5af67375f14efcf548110 (patch) | |
| tree | 57618df14532c3f6cfcd0dd386f00e97cceb6e3e /numpy/lib | |
| parent | b3a4438fedf957e4c0a90cfdac4c26e12e2d1d7c (diff) | |
| parent | 0659217f1aee689c2e47d531ca2e26b5dc2ba224 (diff) | |
| download | numpy-80ffa42124541d5a82f5af67375f14efcf548110.tar.gz | |
Merge pull request #18302 from BvB93/missing-attr
MAINT: Add missing placeholder annotations
Diffstat (limited to 'numpy/lib')
| -rw-r--r-- | numpy/lib/__init__.pyi | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/numpy/lib/__init__.pyi b/numpy/lib/__init__.pyi index 413e2ae1b..a8eb24207 100644 --- a/numpy/lib/__init__.pyi +++ b/numpy/lib/__init__.pyi @@ -1,4 +1,6 @@ -from typing import Any +from typing import Any, List + +__all__: List[str] emath: Any math: Any @@ -175,3 +177,4 @@ nanquantile: Any histogram: Any histogramdd: Any histogram_bin_edges: Any +NumpyVersion: Any |
