Skip to content

Commit

Permalink
fix seed given from terminal
Browse files Browse the repository at this point in the history
  • Loading branch information
exoji2e committed Mar 1, 2018
1 parent e8dd100 commit 2fe1063
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def run(seed):

if args.seed:
log.info('seed: {}'.format(args.seed))
run(args.seed)
run(int(args.seed))
else:
for i in range(args.iterations):
seed = ri(0, 10**6 - 1)
Expand Down

0 comments on commit 2fe1063

Please sign in to comment.