Skip to content

Commit

Permalink
Update main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
katryana authored Aug 10, 2023
1 parent cbf6001 commit 8250769
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 @@ -25,7 +25,7 @@ class Cat(Animal):

def __init__(self,
name: str,
appetite=3,
appetite: int = 3,
is_hungry: bool = True
) -> None:
super().__init__(name, appetite, is_hungry)
Expand All @@ -39,7 +39,7 @@ class Dog(Animal):

def __init__(self,
name: str,
appetite=7,
appetite: int = 7,
is_hungry: bool = True
) -> None:
super().__init__(name, appetite, is_hungry)
Expand Down

0 comments on commit 8250769

Please sign in to comment.