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
We are calling click's echo function directly each time we call it.
Instead of calling it directly, It sounds good to define wrapper functions like
def print_error(message, bold=True): echo( style( message, bold=bold, fg="red" ) ) def print_success(message, bold=True): echo( style( message, bold=bold, fg="green" ) )
and call them to make the codes more descriptive.
The text was updated successfully, but these errors were encountered:
Can I take this and solve along with #243?
Sorry, something went wrong.
@ShubhamPandey28 Sure 👍
No branches or pull requests
Current Implementation:
We are calling click's echo function directly each time we call it.
The implementation I propose:
Instead of calling it directly, It sounds good to define wrapper functions like
and call them to make the codes more descriptive.
The text was updated successfully, but these errors were encountered: