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


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