Skip to content

Commit fdeb9c0

Browse files
author
Shehab Abdel-Salam
committed
Fix format
1 parent 5522e46 commit fdeb9c0

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

chapters/chapter10_oop/exercises/exercise_77.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,13 @@ def create_content(self) -> str: ...
1111

1212

1313
class Blogger:
14-
1514
def add_post(self, title: str):
1615
return f"Creating a new post: {title}"
1716

1817
# TODO: Write create_content() method.
1918

2019

2120
class Vlogger:
22-
2321
def add_video(self, title: str) -> None:
2422
return f"Creating a new video: {title} with path: /videos/{title}.mp4"
2523

0 commit comments

Comments
 (0)