This doesn't work:
@task(help={'foo_bar': '...'})
def some_task(ctx, foo_bar):
...
This works:
@task(help={'foo-bar': '...'})
def some_task(ctx, foo_bar):
...
It's kinda confusing that you need to use the dashed syntax in help, while the parameter is really named with underscore.
This doesn't work:
This works:
It's kinda confusing that you need to use the dashed syntax in
help, while the parameter is really named with underscore.