summaryrefslogtreecommitdiff
path: root/django/contrib/postgres/fields/array.py
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2019-03-03 19:33:48 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-03-03 19:47:17 +0100
commitf13bfdeb559c533ce5ace19a250821e6f8abb13d (patch)
treeb31e70fb9100392225829f650f40cb423228fd72 /django/contrib/postgres/fields/array.py
parentb9beb6a52e84e565533f029555eea731d92fe4f3 (diff)
[1.11.x] Reverted "Fixed relative paths imports per isort 4.3.5."
This reverts commit 463fe11bc8b2d068e447c5df677e7a31c2af7e03 due to restore of relative paths sorting from isort < 4.3.5 in isort 4.3.10. Backport of b435f82939edf70674856e0e1cd63973c2e0a1d1 from master.
Diffstat (limited to 'django/contrib/postgres/fields/array.py')
-rw-r--r--django/contrib/postgres/fields/array.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/postgres/fields/array.py b/django/contrib/postgres/fields/array.py
index d6848c3f32..b70ae37a3a 100644
--- a/django/contrib/postgres/fields/array.py
+++ b/django/contrib/postgres/fields/array.py
@@ -9,8 +9,8 @@ from django.db.models.lookups import Exact, In
from django.utils import six
from django.utils.translation import ugettext_lazy as _
-from .utils import AttributeSetter
from ..utils import prefix_validation_error
+from .utils import AttributeSetter
__all__ = ['ArrayField']