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
Hi! Thanks for this helpful tool.
I'm working with code that has a lot of
{elt: None for elt in foo}
which is slower and (IMO) harder to read than
dict.fromkeys(foo)
Would there be interest in a rule that checks for dictionary comprehensions with constant values?
This has rule has been accepted by another project and it was suggested to me that I create an issue here too.
The text was updated successfully, but these errors were encountered:
Yeah, I would like that here too. I don’t have time to work on it right now, but I’d accept a PR adding it.
Sorry, something went wrong.
I'll open a PR later today.
1ae816f
Successfully merging a pull request may close this issue.
Description
Hi! Thanks for this helpful tool.
I'm working with code that has a lot of
which is slower and (IMO) harder to read than
Would there be interest in a rule that checks for dictionary comprehensions with constant values?
This has rule has been accepted by another project and it was suggested to me that I create an issue here too.
The text was updated successfully, but these errors were encountered: