From 4d9b159de2316d69af84a49832c4fb4ffab89d43 Mon Sep 17 00:00:00 2001 From: Hal Simpson <hasimpson@usgs.gov> Date: Mon, 25 Jan 2016 15:31:49 -0700 Subject: [PATCH] changed default to identity for the default algorithm type --- geomagio/Controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geomagio/Controller.py b/geomagio/Controller.py index f6142619a..fcce9de08 100644 --- a/geomagio/Controller.py +++ b/geomagio/Controller.py @@ -471,7 +471,7 @@ def parse_args(args): # Algorithms group parser.add_argument('--algorithm', choices=[k for k in algorithms], - default='default') + default='identity') for k in algorithms: algorithms[k].add_arguments(parser) -- GitLab