15 lines
298 B
Python
15 lines
298 B
Python
from product import Product
|
|
|
|
|
|
class CarPart(Product):
|
|
'''
|
|
Constructor for a car part
|
|
|
|
Contains additional information that is only relevant for car parts
|
|
'''
|
|
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.make = ""
|
|
self.compatibleVehicles = list()
|