mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-10 11:59:23 +00:00
Switch from poetry to uv
This commit is contained in:
@ -106,7 +106,7 @@ class Basket(models.Model):
|
||||
products = Product.objects.filter(id__in=ids).order_by("id")
|
||||
# items and products are sorted in the same order
|
||||
sales = []
|
||||
for item, product in zip(items, products):
|
||||
for item, product in zip(items, products, strict=False):
|
||||
sales.append(
|
||||
Selling(
|
||||
label=product.name,
|
||||
|
Reference in New Issue
Block a user