-
Notifications
You must be signed in to change notification settings - Fork 753
New issue
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
E731 false negatives #1061
Comments
I think the best way to resolve this is to just mark all |
mapped = map(lambda i: i * 2, range(10)) would also be matched by this when it shouldn't, if I understood you correctly? |
Oh, you're right it is not as simple as what I had said.
In addition to this, f.method = lambda: 'Method' and f['a'] = lambda x: x ** 2 both should be allowed according to tests/E73.py |
The text was updated successfully, but these errors were encountered: