blob: 7b5421a8b4737b8184059304e027d9be71e10fbe (
plain)
1
2
3
4
5
6
7
8
|
from fruit import Fruit
class Orange(Fruit):
def eaten_by_animal(self, animal):
if animal == "cat":
raise ValueError("A cat would never do that !")
super().eaten_by_animal(animal)
|