Python - Multiple Inheritance and Method Resolution
Identify the error in this code snippet related to multiple inheritance:
class A:
def __init__(self):
print('A init')
class B:
def __init__(self):
print('B init')
class C(A, B):
def __init__(self):
A.__init__(self)
B.__init__(self)
c = C()