Add garage producs to product_list

This commit is contained in:
Yarne Coppens 2024-09-19 14:30:50 +02:00
parent 6f16a26d93
commit 62b893393d

View file

@ -35,7 +35,7 @@ light = product_classes.Product(name="Licht", price=2.0, barcode=1023 ,image_fil
flashlight = product_classes.Product(name="Zaklamp", price=1.0, barcode=1024 ,image_filename="flashlight")
search = product_classes.Product(name="Zoeken", price=2.0, barcode=1025 ,image_filename="search")
product_list = [melon,pear,peach,orange,apple,banana,cherry,kiwi,grape,strawberry,pineapple,blueberry,raspberry,lemon]
product_list = [melon,pear,peach,orange,apple,banana,cherry,kiwi,grape,strawberry,pineapple,blueberry,raspberry,lemon,tire,wash,oil,gas,work_time,tool_usage,steering_wheel,air_pump,bike_bell,light,flashlight,search]
def get_all_products() -> list[product_classes.Product]:
return product_list