Skip to content

Commit

Permalink
Solution1907-2
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelKyiv committed Jul 19, 2023
1 parent 61a47aa commit 22d2257
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# write your code here
class Animal:
def __init__(self, name: str, appetite: int, is_hungry: bool = True) -> None:
def __init__(
self,
name: str,
appetite: int,
is_hungry: bool = True
) -> None:
self.name = name
self.appetite = appetite
self.is_hungry = is_hungry
Expand Down

0 comments on commit 22d2257

Please sign in to comment.