Skip to content

Commit

Permalink
Copy
Browse files Browse the repository at this point in the history
  • Loading branch information
Andru37 committed Sep 27, 2023
1 parent abef09e commit 9bfac66
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ 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
Expand Down

0 comments on commit 9bfac66

Please sign in to comment.