Skip to content

Commit

Permalink
ember/test/generateNidListQOS.py: fix incorrect syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
berquist committed Dec 11, 2024
1 parent 7dc3501 commit e049d33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sst/elements/ember/test/generateNidListQOS.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def _random( args ):
global _nids
size = int(args[0])

if len(args) is 2 :
if len(args) == 2:
random.seed(int(args[1]))

random.shuffle(_nids)
Expand Down

0 comments on commit e049d33

Please sign in to comment.