Remove the reportImplicitOverride error when working with abstract classes or protocols. #986
Labels
awaiting response
waiting for more info from the author - will eventually close if they don't respond
type checking / linting
issues relating to existing diagnostic rules or proposals for new diagnostic rules
I think it’s a false positive. Basedpyright, like pyright, shows this error when I implement an abstract class or protocol:
Method "x" is not marked as override but is overriding a method in class "Interface"basedpyright[reportImplicitOverride](https://docs.basedpyright.com/v1.23.2/configuration/config-files/#reportImplicitOverride)
Maybe, when I implement a protocol (abstract class) method or a method with the
@abstractmethod
decorator, basedpyright shouldn't show this error.The text was updated successfully, but these errors were encountered: