Python - Inheritance and Code Reuse
Identify the error in this code snippet:
class A:
def __init__(self):
print("A init")
class B(A):
def __init__(self):
print("B init")
super().__init__()
b = B()