added additional choice for args parser

This commit is contained in:
Robin Müller 2022-03-22 20:42:30 +01:00
parent 1c9f3eccef
commit a3ea5dd2e7
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ def init_printout(project_string: str):
def return_generic_args_parser() -> argparse.ArgumentParser:
parser = argparse.ArgumentParser("Arguments for FSFW MIB generation")
choices = ("events", "objects", "returnvalues", "subservices")
choices = ("events", "objects", "returnvalues", "subservices", "all")
parser.add_argument(
"type",
metavar="type",