-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
False positive E1111
(assignment-from-no-return
) for sys.stdin.read()
#2571
Comments
Thanks, this is definitely a bug! |
jeffwidman
added a commit
to dpkp/kafka-python
that referenced
this issue
Oct 26, 2018
Temporarily workaround pylint-dev/pylint#2571 so that we can stop pinning `pylint` (#1611)
jeffwidman
added a commit
to dpkp/kafka-python
that referenced
this issue
Oct 26, 2018
Temporarily workaround pylint-dev/pylint#2571 so that we can stop pinning `pylint` (#1611)
jeffwidman
added a commit
to dpkp/kafka-python
that referenced
this issue
Oct 26, 2018
Temporarily workaround pylint-dev/pylint#2571 so that we can stop pinning `pylint`.
jeffwidman
added a commit
to dpkp/kafka-python
that referenced
this issue
Oct 27, 2018
Temporarily workaround pylint-dev/pylint#2571 so that we can stop pinning `pylint`.
@Pierre-Sassoulas Can't reproduce this anymore! |
jeffwidman
added a commit
to dpkp/kafka-python
that referenced
this issue
Aug 5, 2021
Supposedly this is fixed upstream now: pylint-dev/pylint#2571 (comment)
jeffwidman
added a commit
to dpkp/kafka-python
that referenced
this issue
Aug 5, 2021
Supposedly this is fixed upstream now: pylint-dev/pylint#2571 (comment)
DoubleRampage
added a commit
to DoubleRampage/MBA-kafka
that referenced
this issue
Nov 21, 2024
Supposedly this is fixed upstream now: pylint-dev/pylint#2571 (comment)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
False positive
E1111
(assignment-from-no-return
) forsys.stdin.read()
.Code:
The final line here throws
E1111
:However,
sys.stdin.read()
does return, so this is a false positive.Pylint version: 2.1.1
Weirdly, this is only thrown on python 3.5 and 3.6, not on 2.7 or 3.4.
You can see the full test matrix here: https://travis-ci.org/dpkp/kafka-python/builds/446012872
The text was updated successfully, but these errors were encountered: