diff options
author | Bas van Beek <b.f.van.beek@vu.nl> | 2021-02-01 16:21:59 +0100 |
---|---|---|
committer | Bas van Beek <b.f.van.beek@vu.nl> | 2021-02-01 18:16:43 +0100 |
commit | 12d99670040c265a615694fd3b8ae1492807c93f (patch) | |
tree | 7b425b6c7901264be3bb5f4e7acf4ff026963578 /numpy/f2py | |
parent | cdbb115aedc20de8f4095c83772bfce17040ad04 (diff) | |
download | numpy-12d99670040c265a615694fd3b8ae1492807c93f.tar.gz |
MAINT: Add missing `__all__` annotations
Diffstat (limited to 'numpy/f2py')
-rw-r--r-- | numpy/f2py/__init__.pyi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/numpy/f2py/__init__.pyi b/numpy/f2py/__init__.pyi index 602517957..50594c1e3 100644 --- a/numpy/f2py/__init__.pyi +++ b/numpy/f2py/__init__.pyi @@ -1,4 +1,6 @@ -from typing import Any +from typing import Any, List + +__all__: List[str] run_main: Any compile: Any |