Replymessage unavailable
You need to do it yourself it won't magically know what to do with the attributes:
class Apple(Fruit):
def __init__(self, variety, region):
super().__init__("Apple", "red")
self.variety = variety
self.region = region