Python - Inheritance and Code Reuse
Find the error in this inheritance code:
class Vehicle:
def move(self):
print("Moving")
class Car(Vehicle)
def move(self):
print("Car moving")