Skip to content

Commit

Permalink
Identation fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
nyanplague committed Aug 10, 2023
1 parent 042fb87 commit 101b01e
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
@@ -1,9 +1,10 @@
class Animal:
def __init__(self,
name: str,
appetite: int = 0,
is_hungry: bool = True
) -> None:
def __init__(
self,
name: str,
appetite: int = 0,
is_hungry: bool = True
) -> None:
self.name = name
self.appetite = appetite
self.is_hungry = is_hungry
Expand Down

0 comments on commit 101b01e

Please sign in to comment.