summaryrefslogtreecommitdiff
path: root/doc/data/messages/t/too-many-function-args/good.py
blob: 338b8e1e8e10aa8e567d02f74b5f1ffe40f4931d (plain)
1
2
3
4
5
6
7
class Fruit:
    def __init__(self, color, name):
        self.color = color
        self.name = name


apple = Fruit("red", "apple")