From 5aca04cf55e9d7f5c1ed6678b8fa2bb43d6cf1fa Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Wed, 7 May 2025 02:41:41 +0300 Subject: [PATCH] Reorder imports in core/vendors/__init__.py Adjusted the import order in compliance with PEP 8 guidelines. This helps improve code readability and maintain consistency across the codebase. --- core/vendors/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/vendors/__init__.py b/core/vendors/__init__.py index 3f30b18d..76ec1992 100644 --- a/core/vendors/__init__.py +++ b/core/vendors/__init__.py @@ -3,7 +3,7 @@ from contextlib import suppress from math import ceil from core.elasticsearch import process_query -from core.models import AttributeValue, Category, Product, Stock, Vendor, Brand +from core.models import AttributeValue, Brand, Category, Product, Stock, Vendor from payments.errors import RatesError from payments.utils import get_rates