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
This was found while working on #4940, after fixing this we might want to check if there are any messages that are unnecessarily disabled in our own codebase.
Command used
pylint test.py
Pylint output
pylint test.py
************* Module test
test.py:11:4: W0231: __init__ method from base class 'B' is not called (super-init-not-called)
------------------------------------------------------------------
Your code has been rated at 8.75/10 (previous run: 8.75/10, +0.00)
Expected behavior
As class B does not have a __init__ it can't be called. The only __init__ included in class B is the __init__ of class A which is being called in class C.
Bug description
This was found while working on #4940, after fixing this we might want to check if there are any messages that are unnecessarily disabled in our own codebase.
Command used
Pylint output
Expected behavior
As class
B
does not have a__init__
it can't be called. The only__init__
included in classB
is the__init__
of classA
which is being called in classC
.Pylint version
OS / Environment
macOS
Additional dependencies
No response
The text was updated successfully, but these errors were encountered: