diff --git a/app/main.py b/app/main.py index fbb9c257..ac05ef06 100644 --- a/app/main.py +++ b/app/main.py @@ -34,7 +34,6 @@ def __repr__(self) -> str: class Herbivore(Animal): def hide(self) -> None: self.hidden = not self.hidden - print(f"{self.name} is now {"hidden" if self.hidden else "visible"}.") class Carnivore(Animal):