diff options
| author | Bas van Beek <b.f.van.beek@vu.nl> | 2021-06-02 02:58:54 +0200 |
|---|---|---|
| committer | Bas van Beek <43369155+BvB93@users.noreply.github.com> | 2021-06-06 17:58:27 +0200 |
| commit | 085ccdc4876f08b742fcf1fdf79274c24c649e92 (patch) | |
| tree | 46b109793f97a435d670424ebe3c2c1ec4796f30 /numpy/testing/__init__.pyi | |
| parent | 3c8e5da46c1440ea0eb3fe66fdc897d3fbae194d (diff) | |
| download | numpy-085ccdc4876f08b742fcf1fdf79274c24c649e92.tar.gz | |
ENH: Add annotations for `np.testing`
Diffstat (limited to 'numpy/testing/__init__.pyi')
| -rw-r--r-- | numpy/testing/__init__.pyi | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/numpy/testing/__init__.pyi b/numpy/testing/__init__.pyi index f40c06e9a..955dae862 100644 --- a/numpy/testing/__init__.pyi +++ b/numpy/testing/__init__.pyi @@ -47,4 +47,7 @@ from numpy.testing._private.utils import ( __all__: List[str] -def run_module_suite(file_to_run=..., argv=...): ... +def run_module_suite( + file_to_run: None | str = ..., + argv: None | List[str] = ..., +) -> None: ... |
