WMGZON/models/products/carpart.py

15 lines
298 B
Python
Raw Normal View History

from product import Product
2024-01-21 22:06:06 +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
def __init__(self):
super().__init__()
self.make = ""
self.compatibleVehicles = list()