pylint unable to detect __init__
signature correctly when base class has __init__
#891
Labels
question
User queries
I have a pattern where I have a single abstract base class with an
__init__
. Multiple classes derive from it, overriding some other method of the abstract base class.Although I am able to instantiate objects correctly, pylint seems to show the squiggly red line below the second argument in the object instantiation call. For example, see below:
I wonder why this is the case, and if there's a way to resolve?
Thanks for the great package, btw!
The text was updated successfully, but these errors were encountered: