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
+4 -2
View File
@@ -1,7 +1,9 @@
from decimal import Decimal
from rest_framework.test import APITestCase as TestCase
from shop.models import Product, ProductPrice, Tax, Customer
from shop.utils import create_order_line_for_product, create_order
from shop.models import Customer, Product, ProductPrice, Tax
from shop.utils import create_order, create_order_line_for_product
class ShopModelsTest(TestCase):