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
This is a suggestion for a new rule
I propose to suggest more usage of some_dict.setdefault(key, default value)
some_dict.setdefault(key, default value)
It could replace a pattern a bit more obscure :
some_dict[key] = some_dict.get(key, default_value) # or even if key not in some_dict: some_dict[key]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Overview
This is a suggestion for a new rule
I propose to suggest more usage of
some_dict.setdefault(key, default value)
Proposal
It could replace a pattern a bit more obscure :
The text was updated successfully, but these errors were encountered: