| Conditions | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | #!/usr/bin/python3 |
||
| 14 | def update_parser(parser): |
||
| 15 | parser.add_argument("--build-dir", default="build", help="Path to the build directory") |
||
| 16 | parser.add_argument( |
||
| 17 | "product", help="The product to be built") |
||
| 18 | parser.add_argument( |
||
| 19 | "output_template", help="Template of the filename to generate. " |
||
| 20 | "Occurrence of '{ref_id}' will be substituted by the respective reference ID " |
||
| 21 | "that the generated table describes.") |
||
| 22 | parser.add_argument( |
||
| 23 | "refcategory", metavar="REFERENCE_ID", nargs="+", |
||
| 24 | help="Category of the rule reference") |
||
| 25 | |||
| 46 |