summaryrefslogtreecommitdiff
path: root/django/contrib/postgres/fields/hstore.py
diff options
context:
space:
mode:
authorsage <laymonage@gmail.com>2019-10-17 11:36:39 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-10-17 12:30:29 +0200
commit6f82df69efa372fb4bddf272fff577850a09f1dc (patch)
tree719b621431e229fbc02bb2a70183a2a32d344d27 /django/contrib/postgres/fields/hstore.py
parent187a64608d2a207dfc12fdd6816526e9550069b7 (diff)
downloaddjango-6f82df69efa372fb4bddf272fff577850a09f1dc.tar.gz
Refs #12990 -- Moved CheckFieldDefaultMixin to the django.db.models.fields.mixins.
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 0889f600a5..2ec5766041 100644
--- a/django/contrib/postgres/fields/hstore.py
+++ b/django/contrib/postgres/fields/hstore.py
@@ -4,10 +4,9 @@ from django.contrib.postgres import forms, lookups
from django.contrib.postgres.fields.array import ArrayField
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 .mixins import CheckFieldDefaultMixin
-
__all__ = ['HStoreField']