(ctx, param, value)
| 62 | click.option = partial(click.option, show_default=True) |
| 63 | |
| 64 | def enable_logging(ctx, param, value): |
| 65 | if value and not ctx.resilient_parsing: |
| 66 | configure_logging(level=param.name) |
| 67 | |
| 68 | def enable_loglevel(ctx, param, value): |
| 69 | if value and not ctx.resilient_parsing: |
nothing calls this directly
no test coverage detected