2023-12-31 16:27:39 +00:00
|
|
|
from product import Product
|
|
|
|
|
2024-01-21 22:06:06 +00:00
|
|
|
|
2023-12-31 16:27:39 +00:00
|
|
|
class CarPart(Product):
|
|
|
|
'''
|
|
|
|
Constructor for a car part
|
|
|
|
|
|
|
|
Contains additional information that is only relevant for car parts
|
|
|
|
'''
|
2024-01-21 22:06:06 +00:00
|
|
|
|
2023-12-31 16:27:39 +00:00
|
|
|
def __init__(self):
|
|
|
|
super().__init__()
|
|
|
|
self.make = ""
|
|
|
|
self.compatibleVehicles = list()
|