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.
This commit is contained in:
parent
5d007c07a2
commit
5aca04cf55
1 changed files with 1 additions and 1 deletions
2
core/vendors/__init__.py
vendored
2
core/vendors/__init__.py
vendored
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue