Python - Inheritance and Code Reuse
Identify the error in this code:
class Vehicle:
def start(self):
print('Vehicle started')
class Car(Vehicle):
def start(self):
super.start()
print('Car started')
c = Car()
c.start()