Skip to content

Commit e4322d4

Browse files
committed
solution
1 parent b6b0627 commit e4322d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/main.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ def __init__(
1414
Animal.alive.append(self)
1515

1616
def __repr__(self) -> str:
17-
return f"{{{", ".join(
17+
return f'{{{", ".join(
1818
(f"{k.capitalize()}: {v}" for k, v in vars(self).items())
19-
)}}}"
19+
)}}}'
2020

2121

2222
class Herbivore(Animal):

0 commit comments

Comments
 (0)