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


class Apple(Fruit):
    def bore(self, insect):  # [invalid-overridden-method]
        insect.eat(self)