(self)
| 30 | |
| 31 | class ArgsParser(ArgumentParser): |
| 32 | def __init__(self): |
| 33 | super(ArgsParser, self).__init__( |
| 34 | formatter_class=RawDescriptionHelpFormatter) |
| 35 | self.add_argument("-c", "--config", help="configuration file to use") |
| 36 | |
| 37 | def parse_args(self, argv=None): |
| 38 | args = super(ArgsParser, self).parse_args(argv) |
nothing calls this directly
no outgoing calls
no test coverage detected