Conditions | 1 |
Total Lines | 7 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | #!/usr/bin/env python2 |
||
9 | def parse_args(): |
||
10 | parser = argparse.ArgumentParser(description='Add STIG references to XCCDF files.') |
||
11 | parser.add_argument("--disa-stig", help="DISA STIG Reference XCCDF file", |
||
12 | dest="reference") |
||
13 | parser.add_argument("--unlinked-xccdf", help="unlinked SSG XCCDF file", |
||
14 | dest="destination") |
||
15 | return parser.parse_args() |
||
16 | |||
27 |