noninspection access to protected member

Solutions on MaxInterview for noninspection access to protected member by the best coders in the world

showing results for - "noninspection access to protected member"
Harmony
08 Aug 2018
1class A(object):
2    def __init__(self, data):
3        self._data = data
4    def _equals(self, other):
5        # noinspection PyProtectedMember
6        return self._data == other._data