Skip to content

Commit

Permalink
Corrected_output
Browse files Browse the repository at this point in the history
  • Loading branch information
oboliziuk committed Oct 20, 2023
1 parent 40d4807 commit 6a1c571
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@ def __setattr__(self, attr: str, value: int) -> None:
super().__setattr__(attr, value)

def __repr__(self) -> str:
return f"{{"\
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 6a1c571

Please sign in to comment.