-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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 no-member on member of generic grandparent class #3131
Comments
Thanks, I can reproduce it as well. |
I believe this is fixed as of pylint 2.7 for the provided repro above |
I copied this example and tried pylint 2.7.2 and I still get this error, so I don't see how "this is fixed as of pylint 2.7 for the provided repro above".
|
@jamesbraza @radkujawa both of you are right. |
Should this be closed? It appears to be fixed now! 😄 |
Thank you for the reminder @NeilGirdhar, cleaning up issue is hard :) |
Least I can do to help. Thank you for resolving these so quickly. |
Steps to reproduce
Run pylint on the following code:
Current behavior
The following message is reported:
The message goes away if
Concrete
is made to inherit directly fromBase
, so withoutIntermediate
in between them.Expected behavior
No message is reported.
pylint --version output
pylint 2.4.0
astroid 2.3.0
Python 3.7.2 (default, Feb 26 2019, 13:02:33)
[GCC 7.3.1 20180323 [gcc-7-branch revision 258812]]
Notes
I wonder if this is related to #3129.
The text was updated successfully, but these errors were encountered: