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
+5 -12
View File
@@ -1,17 +1,10 @@
from rest_framework.routers import DefaultRouter
from shop.api.v1.viewsets import (
TaxViewSet,
CustomerViewSet,
ProductViewSet,
ProductPriceViewSet,
OrderViewSet,
OrderLineViewSet,
ProviderViewSet,
ProductBatchViewSet,
TagViewSet,
BrandViewSet,
)
from shop.api.v1.viewsets import (BrandViewSet, CustomerViewSet,
OrderLineViewSet, OrderViewSet,
ProductBatchViewSet, ProductPriceViewSet,
ProductViewSet, ProviderViewSet, TagViewSet,
TaxViewSet)
app_name = "shop"