We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Click 6.7 doesn't support get_short_help_str so I had to monkey patch it like this. I hope this helps others.
get_short_help_str
import click def _patched_get_short_help_str(command, limit=45): return ( command.short_help or command.help and click.utils.make_default_short_help(command.help, limit) or "" ) def apply(): click.Command.get_short_help_str = _patched_get_short_help_str # type: ignore
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Click 6.7 doesn't support
get_short_help_str
so I had to monkey patch it like this. I hope this helps others.The text was updated successfully, but these errors were encountered: