diff options
Diffstat (limited to 'numpy/random/mtrand.pyi')
-rw-r--r-- | numpy/random/mtrand.pyi | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/numpy/random/mtrand.pyi b/numpy/random/mtrand.pyi index 8c5391b6e..fc61f7b50 100644 --- a/numpy/random/mtrand.pyi +++ b/numpy/random/mtrand.pyi @@ -1,6 +1,5 @@ -from numpy.random.bit_generator import BitGenerator import sys -from typing import Any, Callable, Dict, Literal, Optional, Sequence, Tuple, Type, Union, overload +from typing import Any, Callable, Dict, Optional, Tuple, Type, Union, overload from numpy import ( bool_, @@ -19,12 +18,11 @@ from numpy import ( uint32, uint64, ) -from numpy.random import BitGenerator, SeedSequence +from numpy.random.bit_generator import BitGenerator from numpy.typing import ( ArrayLike, _ArrayLikeFloat_co, _ArrayLikeInt_co, - _BoolCodes, _DoubleCodes, _DTypeLikeBool, _DTypeLikeInt, |