summaryrefslogtreecommitdiff
path: root/doc/data/messages/i/invalid-overridden-method/good.py
blob: f5b56308f86f846e3c3915111c061c87469e7893 (plain)
1
2
3
4
5
6
7
class Fruit:
    async def bore(self, insect):
        insect.eat(self)

class Apple(Fruit):
    async def bore(self, insect):
        insect.eat(self)