summaryrefslogtreecommitdiff
path: root/numpy/random
diff options
context:
space:
mode:
authorKevin Sheppard <kevin.k.sheppard@gmail.com>2021-02-20 01:20:28 +0000
committerKevin Sheppard <kevin.k.sheppard@gmail.com>2021-02-24 10:40:30 +0000
commita05d5db2109d2d5afda40cb790b66cfb50a4708a (patch)
tree0d25f6698ecfa5711eab6ec2f39f6f9f08c9b8ea /numpy/random
parent2e92a52bc523cf9eec245c01fdea01ce12dfbf9f (diff)
downloadnumpy-a05d5db2109d2d5afda40cb790b66cfb50a4708a.tar.gz
BUG: Fix typing bugs
Diffstat (limited to 'numpy/random')
-rw-r--r--numpy/random/mtrand.pyi2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/mtrand.pyi b/numpy/random/mtrand.pyi
index f088a3929..8c5391b6e 100644
--- a/numpy/random/mtrand.pyi
+++ b/numpy/random/mtrand.pyi
@@ -529,7 +529,7 @@ class RandomState:
def dirichlet(
self, alpha: _ArrayLikeFloat_co, size: Optional[_ShapeLike] = ...
) -> ndarray[Any, dtype[float64]]: ...
- def shuffle(self, x: ArrayLike) -> Sequence[Any]: ...
+ def shuffle(self, x: ArrayLike) -> None: ...
@overload
def permutation(self, x: int) -> ndarray[Any, dtype[int_]]: ...
@overload