diff options
| author | Kevin Sheppard <kevin.k.sheppard@gmail.com> | 2021-02-20 01:20:28 +0000 |
|---|---|---|
| committer | Kevin Sheppard <kevin.k.sheppard@gmail.com> | 2021-02-24 10:40:30 +0000 |
| commit | a05d5db2109d2d5afda40cb790b66cfb50a4708a (patch) | |
| tree | 0d25f6698ecfa5711eab6ec2f39f6f9f08c9b8ea /numpy/random | |
| parent | 2e92a52bc523cf9eec245c01fdea01ce12dfbf9f (diff) | |
| download | numpy-a05d5db2109d2d5afda40cb790b66cfb50a4708a.tar.gz | |
BUG: Fix typing bugs
Diffstat (limited to 'numpy/random')
| -rw-r--r-- | numpy/random/mtrand.pyi | 2 |
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 |
