diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2022-03-12 17:27:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-12 17:27:21 -0700 |
commit | 2a11acd3769f62ed716fdc6e87d2d5c109673b7c (patch) | |
tree | 458a9e6d12c2ec0906ef1e8cca80d8a52f6a9010 | |
parent | 4526ff430df7ac07e66af90eadab176ec89e108f (diff) | |
parent | 3247145ced7af5104f7204bbf4c5be95e36714d7 (diff) | |
download | numpy-2a11acd3769f62ed716fdc6e87d2d5c109673b7c.tar.gz |
Merge pull request #21185 from BvB93/stride_tricks
TYP, BUG: Fix `np.lib.stride_tricks` being incorrectly re-exported
-rw-r--r-- | numpy/lib/__init__.pyi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/__init__.pyi b/numpy/lib/__init__.pyi index 7338fc6d6..0e3da5b41 100644 --- a/numpy/lib/__init__.pyi +++ b/numpy/lib/__init__.pyi @@ -14,7 +14,7 @@ from numpy.lib import ( format as format, mixins as mixins, scimath as scimath, - stride_tricks as stride_stricks, + stride_tricks as stride_tricks, ) from numpy.lib._version import ( |