summaryrefslogtreecommitdiff
path: root/doc/data/messages/s/super-init-not-called/good.py
blob: 7f8a17706e4c5e6e8ec9d84ab87a4c348435cf22 (plain)
1
2
3
4
5
6
7
8
9
class Fruit:
    def __init__(self, name="fruit"):
        self.name = name
        print("Creating a {self.name}")


class Apple(Fruit):
    def __init__(self):
        super().__init__("apple")