False Negative - Python abc.ABC
makes method's getACall
unavailable
#18725
Labels
question
Further information is requested
If we have this Python code:
and this query:
It's OK that
self.method()
andmc.method()
will be marked as positive.However, those will be false negative as long as the class
MyClass
inheritsabc.ABC
. It looks like:Why does the
abc.ABC
make the result wrong?The text was updated successfully, but these errors were encountered: