Skip to content

Commit f3face3

Browse files
committed
fix copy-paste error in _numpy_random.set_state passing brng kwarg
1 parent 304177d commit f3face3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mkl_random/interfaces/_numpy_random.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def set_state(self, state):
102102
`numpy.random.get_state`.
103103
104104
"""
105-
return super().set_state(state=state, brng="MT19937")
105+
return super().set_state(state=state)
106106

107107
def random_sample(self, size=None):
108108
"""

0 commit comments

Comments
 (0)