From 1925b4c0052379f7198dc41c34e52201228ec697 Mon Sep 17 00:00:00 2001 From: George Lacey Date: Sun, 24 Sep 2017 18:22:20 +0100 Subject: [PATCH] Derive population size from args --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index fa62d5a..b2eab1a 100644 --- a/src/main.py +++ b/src/main.py @@ -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)