Last analyzed 3be6ee4 5 months ago
Default analysis branch is
Currently analyzing run
Protected member accessed from outside the class PYL-W0212
Bug risk
5 months ago6 months old
Access to a protected member __key of a client class
33
34    def __eq__(self, other) -> bool:
35        if isinstance(other, BasisNode):
36            return self.__key() == other.__key()37        return NotImplemented