summaryrefslogtreecommitdiff
path: root/django/contrib/postgres/fields/array.py
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2019-02-25 11:03:30 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-02-25 11:03:30 +0100
commit463fe11bc8b2d068e447c5df677e7a31c2af7e03 (patch)
tree653c3bc4d6759e9f589b8695efef89390610ce8e /django/contrib/postgres/fields/array.py
parent52e9c753659ffeab67149fcf26b95c10cf137c40 (diff)
downloaddjango-463fe11bc8b2d068e447c5df677e7a31c2af7e03.tar.gz
Fixed relative paths imports per isort 4.3.5.
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 e00e7ac803..25307ff4c7 100644
--- a/django/contrib/postgres/fields/array.py
+++ b/django/contrib/postgres/fields/array.py
@@ -8,9 +8,9 @@ from django.db.models import Field, IntegerField, Transform
from django.db.models.lookups import Exact, In
from django.utils.translation import gettext_lazy as _
-from ..utils import prefix_validation_error
from .mixins import CheckFieldDefaultMixin
from .utils import AttributeSetter
+from ..utils import prefix_validation_error
__all__ = ['ArrayField']