summaryrefslogtreecommitdiff
path: root/doc/data/messages/i/invalid-name/good.py
blob: 3decdb3e4afee4fe12ba96805b2d8db1ad8fb000 (plain)
1
2
3
4
5
6
7
8
class Cat:

    def meow(self, number_of_meow):
        print("Meow" * number_of_meow)
        return number_of_meow


CAT = Cat().meow(42)