(self, required=None)
| 3814 | class MEPBase(object): |
| 3815 | |
| 3816 | def get_parser(self, required=None): |
| 3817 | parent = super(MEPBase, self).get_parser(required=required) |
| 3818 | parser = ErrorRaisingArgumentParser( |
| 3819 | prog=parent.prog, add_help=False, parents=[parent]) |
| 3820 | return parser |
| 3821 | |
| 3822 | |
| 3823 | class TestMutuallyExclusiveGroupErrorsParent( |
no test coverage detected