Skip to content

Commit

Permalink
last Solution
Browse files Browse the repository at this point in the history
  • Loading branch information
MiskoRuslan committed Oct 9, 2023
1 parent 9bcc807 commit 72a6240
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}}}")


Expand Down

0 comments on commit 72a6240

Please sign in to comment.