"""categories: Core,Classesdescription: Calling super() getter property in subclass will return a property object, not the valuecause: Unknownworkaround: Unknown"""classA:@propertydefp(self):return{"a":10}classAA(A):@propertydefp(self):returnsuper().pa=AA()print(a.p)