mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-21 17:03:00 +00:00
dlr: missing quotes
This commit is contained in:
parent
5a73388a80
commit
fe05dd33fc
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ def shuffle(lst):
|
|||
tmplist = deepcopy(lst)
|
||||
m = len(tmplist)
|
||||
|
||||
if RANDSEED in os.environ:
|
||||
if "RANDSEED" in os.environ:
|
||||
seed = os.environ["RANDSEED"]
|
||||
random.seed(seed)
|
||||
logger.info(f"Random seed set to {seed}, first 3 values: {random.randint(0, m)}, {random.randint(0, m)}, {random.randint(0, m)}")
|
||||
|
|
Loading…
Reference in a new issue