(self, required=None)
| 3925 | class MEPBase(object): |
| 3926 | |
| 3927 | def get_parser(self, required=None): |
| 3928 | parent = super(MEPBase, self).get_parser(required=required) |
| 3929 | parser = ErrorRaisingArgumentParser( |
| 3930 | prog=parent.prog, add_help=False, parents=[parent]) |
| 3931 | return parser |
| 3932 | |
| 3933 | |
| 3934 | class TestMutuallyExclusiveGroupErrorsParent( |
no test coverage detected