fix: sorted imports

This commit is contained in:
2024-11-22 08:30:26 +01:00
parent 8783404570
commit f2854ddebf
42 changed files with 100 additions and 146 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
from decimal import Decimal
from shop.models import OrderLine, Product, Order, Customer, ProductBatch
from shop.models import Customer, Order, OrderLine, Product, ProductBatch
def create_order_line_for_product(product: Product, quantity: Decimal, order: Order):