Python - Object-Oriented Programming Foundations
Identify the mistake in this Python class:
class Vehicle:
def __init__(self, type):
type = type
v = Vehicle('Car')
print(v.type)