Motivated by a great student question on Skillshare: https://www.skillshare.com/classes/Learn-How-to-Learn-Coding-Faster-Object-Oriented-Programming-in-Python/563255574/classroom/discussions/287457
We need this when there are multiple classes inheriting from each other. Here's an example: Say we have classes A, B and C. Define B and C, so that there are no parent classes:
class B:
def __init__(self):
print("boo")
class C: