You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The error message "Could not determine name for option" from core.py does not tell the use which @click.option was at fault. The stacktrace points to the command wrapper itself, not to the decorator since the error is only thrown later.
An example for an invalid option is @click.option('--foo,--bar')
The error message should include the offending declaration.