Skip to content

Commit

Permalink
BUG: random: Fix the mistaken duplicate line. Fixes numpygh-14557.
Browse files Browse the repository at this point in the history
  • Loading branch information
WarrenWeckesser committed Sep 12, 2019
1 parent c82045a commit e389bee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numpy/random/mtrand.pyx
Expand Up @@ -3517,7 +3517,7 @@ cdef class RandomState:
# Convert to int64, if necessary, to use int64 infrastructure
ongood = ongood.astype(np.int64)
onbad = onbad.astype(np.int64)
onbad = onbad.astype(np.int64)
onsample = onsample.astype(np.int64)
out = discrete_broadcast_iii(&legacy_random_hypergeometric,&self._bitgen, size, self.lock,
ongood, 'ngood', CONS_NON_NEGATIVE,
onbad, 'nbad', CONS_NON_NEGATIVE,
Expand Down

0 comments on commit e389bee

Please sign in to comment.