diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2022-03-25 09:40:49 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-25 09:40:49 -0600 |
commit | 266aad7478bc7fbcc55eea7f942a0d373b838396 (patch) | |
tree | 0f144df0739b772bf1a38b3e03463c6b4eb21d91 /numpy/random/_sfc64.pyi | |
parent | 4115eead62a382a32afdb0450c54e0249db02915 (diff) | |
parent | 65ec64c932626689b50b53e0909ced47f5a821fa (diff) | |
download | numpy-266aad7478bc7fbcc55eea7f942a0d373b838396.tar.gz |
Merge pull request #21216 from BvB93/_typing
MAINT: Split `numpy.typing` into a public and private component
Diffstat (limited to 'numpy/random/_sfc64.pyi')
-rw-r--r-- | numpy/random/_sfc64.pyi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/_sfc64.pyi b/numpy/random/_sfc64.pyi index 333aa92c4..e1810e7d5 100644 --- a/numpy/random/_sfc64.pyi +++ b/numpy/random/_sfc64.pyi @@ -4,7 +4,7 @@ from numpy import dtype as dtype from numpy import ndarray as ndarray from numpy import uint64 from numpy.random.bit_generator import BitGenerator, SeedSequence -from numpy.typing import _ArrayLikeInt_co +from numpy._typing import _ArrayLikeInt_co class _SFC64Internal(TypedDict): state: ndarray[Any, dtype[uint64]] |