From ed1796dbc45b63368ae499fc423d7829455a6428 Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Tue, 20 May 2025 08:00:59 +0300 Subject: [PATCH] Features: ; Fixes: 1) Remove duplicate import of Address; Extra: 1) Reformat import statements for better readability; --- core/graphene/object_types.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/graphene/object_types.py b/core/graphene/object_types.py index a51023ed..d87d4175 100644 --- a/core/graphene/object_types.py +++ b/core/graphene/object_types.py @@ -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__)