From 9bcc8073b5669abb79857d109c72f961b587ca5f Mon Sep 17 00:00:00 2001 From: Ruslan Misko Date: Mon, 9 Oct 2023 14:39:19 +0300 Subject: [PATCH] Solution --- app/main.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/app/main.py b/app/main.py index 2642ab8e..b326463e 100644 --- a/app/main.py +++ b/app/main.py @@ -1,7 +1,10 @@ class Animal: alive = [] - def __init__(self, name: str, health: int = 100, hidden: bool = False) -> None: + def __init__(self, + name: str, + health: int = 100, + hidden: bool = False) -> None: self.name = name self.health = health self.hidden = hidden @@ -12,7 +15,9 @@ def check_alive_animals() -> None: Animal.alive = [animal for animal in Animal.alive if animal.health > 0] def __repr__(self) -> str: - return f"{{Name: {self.name}, Health: {self.health}, Hidden: {self.hidden}}}" + return (f"{{Name: {self.name}," + f"Health: {self.health}," + f"Hidden: {self.hidden}}}") class Herbivore(Animal):