Make sure that class attribute and class methods have a unique name without any collision.
Non-Compliant Code Examples
classMyClass:def__init__(self,something):self.foo=somethingdefbla(foo):passdeffoo(self):# hidden by self.foopass
classConfig:def__init__(self,value):self.threshold=valueself.max_val=100@propertydefthreshold(self)->int:returnself._thresholddefmax_val(self):# hidden by self.max_val, not a propertypass