(ctx, param, value)
| 318 | """ |
| 319 | |
| 320 | def eager_cb(ctx, param, value): |
| 321 | source = ctx.get_parameter_source(param.name) |
| 322 | click.echo(f"callback source={source.name if source else None}") |
| 323 | |
| 324 | @click.command() |
| 325 | @click.option( |
nothing calls this directly
no test coverage detected