diff options
author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-03-03 19:33:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-03 19:33:48 +0100 |
commit | b435f82939edf70674856e0e1cd63973c2e0a1d1 (patch) | |
tree | bb281e9e2d32eeb8c8cc6f57e9b1abed9f904f0b /django/contrib/postgres/fields/array.py | |
parent | 8ec7ded3706fe66bf307ed339eb852d73f6d10d0 (diff) | |
download | django-b435f82939edf70674856e0e1cd63973c2e0a1d1.tar.gz |
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.
Diffstat (limited to 'django/contrib/postgres/fields/array.py')
-rw-r--r-- | django/contrib/postgres/fields/array.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/postgres/fields/array.py b/django/contrib/postgres/fields/array.py index 25307ff4c7..e00e7ac803 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'] |