We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 55c8111 + 883a56b commit b7a2608Copy full SHA for b7a2608
click_option_group/_core.py
@@ -46,7 +46,8 @@ def group(self) -> 'OptionGroup':
46
47
def handle_parse_result(self, ctx, opts, args):
48
with augment_usage_errors(ctx, param=self):
49
- self.group.handle_parse_result(self, ctx, opts)
+ if not ctx.resilient_parsing:
50
+ self.group.handle_parse_result(self, ctx, opts)
51
return super().handle_parse_result(ctx, opts, args)
52
53
def get_help_record(self, ctx: click.Context):
0 commit comments