Skip to content

Commit

Permalink
Fixing GenerateData random number default
Browse files Browse the repository at this point in the history
  • Loading branch information
etpeterson committed Nov 5, 2023
1 parent 4a4cadf commit 6238976
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utilities/data_simulation/GenerateData.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def __init__(self, operator=None, rng=None):
else:
self._op = operator
if rng is None:
self._rng = self._op
self._rng = self._op.random
else:
self._rng = rng

Expand Down

0 comments on commit 6238976

Please sign in to comment.