You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, errors are reported based on the ordering of the invocation:
$ pylint --py3k a.py b.py--------------------------------------------------------------------Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00)
$ pylint --py3k b.py a.py************* Module bb.py:7:14: W1645: Exception.message removed in Python 3 (exception-message-attribute)------------------------------------------------------------------Your code has been rated at 8.89/10 (previous run: 8.89/10, +0.00)
Expected behavior
I expect both to produce the error from b.py, and maybe even an error in a.py for assigning to Exception.message
Steps to reproduce
I have the following minimal setup:
Current behavior
Currently, errors are reported based on the ordering of the invocation:
Expected behavior
I expect both to produce the error from
b.py
, and maybe even an error ina.py
for assigning toException.message
pylint --version output
The text was updated successfully, but these errors were encountered: