From 12d99670040c265a615694fd3b8ae1492807c93f Mon Sep 17 00:00:00 2001 From: Bas van Beek Date: Mon, 1 Feb 2021 16:21:59 +0100 Subject: MAINT: Add missing `__all__` annotations --- numpy/lib/__init__.pyi | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'numpy/lib') diff --git a/numpy/lib/__init__.pyi b/numpy/lib/__init__.pyi index 413e2ae1b..0d0e4c2e1 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 -- cgit v1.2.1 From c21509a595eea2cf9d64893a58adb5abcce68bb1 Mon Sep 17 00:00:00 2001 From: Bas van Beek Date: Mon, 1 Feb 2021 16:31:16 +0100 Subject: MAINT: Add previously-missing placeholder annotations --- numpy/lib/__init__.pyi | 1 + 1 file changed, 1 insertion(+) (limited to 'numpy/lib') diff --git a/numpy/lib/__init__.pyi b/numpy/lib/__init__.pyi index 0d0e4c2e1..a8eb24207 100644 --- a/numpy/lib/__init__.pyi +++ b/numpy/lib/__init__.pyi @@ -177,3 +177,4 @@ nanquantile: Any histogram: Any histogramdd: Any histogram_bin_edges: Any +NumpyVersion: Any -- cgit v1.2.1