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
+3 -12
View File
@@ -1,18 +1,9 @@
from django.contrib import admin
from shop.models import (
Product,
ProductPrice,
OrderLine,
Order,
Tax,
Customer,
Provider,
Tag,
ProductBatch,
Brand,
)
from unfold.admin import ModelAdmin
from shop.models import (Brand, Customer, Order, OrderLine, Product,
ProductBatch, ProductPrice, Provider, Tag, Tax)
# Register your models here.
@admin.register(Product)