From df1618963ede311b7aeb0882f8802e739e0026e8 Mon Sep 17 00:00:00 2001 From: Morgan Aubert Date: Wed, 22 Dec 2021 17:55:32 -0500 Subject: [PATCH] Fix QA warning --- tests/unit/models/test_fields.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/models/test_fields.py b/tests/unit/models/test_fields.py index 0d066949b..85befdb09 100644 --- a/tests/unit/models/test_fields.py +++ b/tests/unit/models/test_fields.py @@ -7,11 +7,11 @@ from django.core.exceptions import ImproperlyConfigured, ValidationError from django.core.files import File from django.utils.encoding import force_str -from tests.models import RESIZED_IMAGE_HEIGHT, RESIZED_IMAGE_WIDTH, DummyModel from machina.conf import settings as machina_settings from machina.core.compat import PILImage as Image from machina.models import fields +from tests.models import RESIZED_IMAGE_HEIGHT, RESIZED_IMAGE_WIDTH, DummyModel @pytest.mark.django_db