Conditions | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
1 | import argparse |
||
45 | def parse_args(self): |
||
46 | # Add the help option/action after all arguments |
||
47 | self.parser.add_argument('-h', '--help', |
||
48 | action='help', |
||
49 | default=argparse.SUPPRESS, help='show this help message and exit') |
||
50 | self.args = vars(self.parser.parse_args()) |
||
51 | self.argsParsed = True |
||
52 | |||
56 |