summaryrefslogtreecommitdiff
path: root/doc/data/messages/u/useless-parent-delegation/good.py
blob: 890a4311640dd67484e8c792431193e01c1d1f57 (plain)
1
2
3
4
5
6
7
class Animal:
    def eat(self, food):
        print(f"Eating {food}")


class Human(Animal):
    """There is no need to override 'eat' it has the same signature as the implementation in Animal."""