diff --git a/app/main.py b/app/main.py index ccc47abd..796290ca 100644 --- a/app/main.py +++ b/app/main.py @@ -1,11 +1,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