From 72a62406543816f91c6d355374ed0a346b17a310 Mon Sep 17 00:00:00 2001 From: Ruslan Misko Date: Mon, 9 Oct 2023 14:41:16 +0300 Subject: [PATCH] last Solution --- app/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/main.py b/app/main.py index b326463e..2776a325 100644 --- a/app/main.py +++ b/app/main.py @@ -15,8 +15,8 @@ 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}," - f"Health: {self.health}," + return (f"{{Name: {self.name}, " + f"Health: {self.health}, " f"Hidden: {self.hidden}}}")