Override a property with super()

Try return super().velocity

@property
def velocity(self, flag=True):
    if flag:
        return super().velocity

CLICK HERE to find out more related problems solutions.

Leave a Comment

Your email address will not be published.

Scroll to Top