Derive population size from args
This commit is contained in:
parent
7797ebd07b
commit
1925b4c005
|
@ -5,4 +5,4 @@ args = argparse.ArgumentParser()
|
|||
args.add_argument("pop", help="Population size", type=int)
|
||||
args = args.parse_args()
|
||||
|
||||
pop = Population(10)
|
||||
pop = Population(args.pop)
|
||||
|
|
Loading…
Reference in New Issue
Block a user