Refs #24522 -- Fixed code comment about seeds in Shuffler.__init__().

This commit is contained in:
Chris Jerdonek 2021-07-08 23:20:16 -07:00 committed by GitHub
parent ae32e337e0
commit f5dccbafb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -492,7 +492,7 @@ class Shuffler:
def __init__(self, seed=None):
if seed is None:
# Limit seeds to 9 digits for simpler output.
# Limit seeds to 10 digits for simpler output.
seed = random.randint(0, 10**10 - 1)
seed_source = 'generated'
else: