FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 1315f042 authored by L. Bower's avatar L. Bower
Browse files

first stab at getting new runner script working

parent d5662061
No related branches found
No related tags found
No related merge requests found
......@@ -255,14 +255,14 @@ class Processor:
# positional arguments do not start with - or -- and are always required
# optional arguments start with - or -- and default is required = False
# my_parser.add_argument(
# '-p', '--component',
# type = str,
# choices = list(short_name.keys()),
# required = True,
# dest = 'component',
# help = '''Name of EWS component to process, which must be present
# in the config file.''')
my_parser.add_argument(
'-p', '--component',
type = str,
choices = list(short_name.keys()),
required = False,
dest = 'component',
help = '''Name of EWS component to process, which must be present
in the config file.''')
my_parser.add_argument(
'-c', '--config',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment