from products.factories import (
ProductFactory,
ProductImageFactory,
ProductOptionFactory,
ProductOptionValueFactory,
ProductPresentmentPriceFactory,
ProductVariantFactory,
)
from products.models import Product, ProductImage, ProductOption, ProductOptionValue, ProductPresentmentPrice, ProductVariant
from django.test import TestCase
[isort]
line_length=140
forced_separate=django
multi_line_output=3
balanced_wrapping=True
So I've run an
isort -rc -ycommand and after that Iisort -rc --check-onlyand I get to see that some of the files hasImports are incorrectly sorted.This is part of the code that is being involved:
setup.cfg