summaryrefslogtreecommitdiff
path: root/django/contrib/postgres/fields/hstore.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/contrib/postgres/fields/hstore.py')
-rw-r--r--django/contrib/postgres/fields/hstore.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/django/contrib/postgres/fields/hstore.py b/django/contrib/postgres/fields/hstore.py
index e28b9f7dbe..48a2e2603d 100644
--- a/django/contrib/postgres/fields/hstore.py
+++ b/django/contrib/postgres/fields/hstore.py
@@ -2,13 +2,12 @@ import json
from django.contrib.postgres import forms, lookups
from django.contrib.postgres.fields.array import ArrayField
+from django.contrib.postgres.utils import CheckPostgresInstalledMixin
from django.core import exceptions
from django.db.models import Field, TextField, Transform
from django.db.models.fields.mixins import CheckFieldDefaultMixin
from django.utils.translation import gettext_lazy as _
-from ..utils import CheckPostgresInstalledMixin
-
__all__ = ["HStoreField"]