Skip to content

Commit

Permalink
defaulting the workflow type on the command line
Browse files Browse the repository at this point in the history
  • Loading branch information
PhillipsOwen committed Jan 25, 2024
1 parent 474ee2c commit eb4eebd
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 @@ -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()
Expand Down

0 comments on commit eb4eebd

Please sign in to comment.