From eb4eebd9e60d4f96369e8866677faa1d42248d10 Mon Sep 17 00:00:00 2001 From: Phil Owen <19691521+PhillipsOwen@users.noreply.github.com> Date: Thu, 25 Jan 2024 09:08:03 -0500 Subject: [PATCH] defaulting the workflow type on the command line --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 2061295..d4d32d0 100644 --- a/main.py +++ b/main.py @@ -32,7 +32,7 @@ # declare the command params parser.add_argument('--run_dir', default=None, help='The name of the run directory to use for the staging operations.', type=str, required=True) parser.add_argument('--step_type', default=None, help='The type of staging step, initial or final.', type=str, required=True) - parser.add_argument('--workflow_type', default=None, help='The type of workflow, CORE, TOPOLOGY, etc..', type=str, required=True) + parser.add_argument('--workflow_type', default='CORE', help='The type of workflow, CORE, TOPOLOGY, etc..', type=str, required=False) # collect the params args = parser.parse_args()