Features: ;

Fixes: 1) Remove duplicate import of Address;

Extra: 1) Reformat import statements for better readability;
This commit is contained in:
Egor Pavlovich Gorbunov 2025-05-20 08:00:59 +03:00
parent 0ab8738520
commit ed1796dbc4

View file

@ -10,6 +10,7 @@ from graphene_django.utils import camelize
from mptt.querysets import TreeQuerySet
from core.models import (
Address,
Attribute,
AttributeGroup,
AttributeValue,
@ -24,7 +25,7 @@ from core.models import (
Promotion,
Stock,
Vendor,
Wishlist, Address,
Wishlist,
)
logger = __import__("logging").getLogger(__name__)