fix(curriculum): remove first person language from media catalogue workshop (#67398)

Signed-off-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com>
Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com>
This commit is contained in:
Clarence Bakosi
2026-05-14 20:17:27 +01:00
committed by GitHub
parent 4190930587
commit 55aa9260e7
@@ -7,7 +7,7 @@ dashedName: step-16
# --description--
What if you want to represent a different type of media item, let's say a tv series? You could create another class and make it inherit from `Movie` to have access to all of its methods and attributes.
What if you want to represent a different type of media item, such as a TV series? You could create another class and make it inherit from `Movie` to have access to all of its methods and attributes.
Create an empty class named `TVSeries` and make it inherit from `Movie`. Here's how to make a `Child` class inherit from a `Parent` class.