diff options
| author | Mads Jensen <mje@inducks.org> | 2017-01-15 20:09:38 +0100 |
|---|---|---|
| committer | Markus Holtermann <info@markusholtermann.eu> | 2017-01-15 22:02:39 +0100 |
| commit | 7e299c0e03a52052068db5108de97cf59174bfd9 (patch) | |
| tree | c97b207a8e9eb753ae015f2fe37b57ed319e043d | |
| parent | e585c43be91fb3e5005ddb4191f64142c62a2ec3 (diff) | |
Refs #25809 -- Prefered imports from django.db.models.
| -rw-r--r-- | django/contrib/postgres/indexes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/postgres/indexes.py b/django/contrib/postgres/indexes.py index a2bd3918c6..897fbc1f57 100644 --- a/django/contrib/postgres/indexes.py +++ b/django/contrib/postgres/indexes.py @@ -1,6 +1,6 @@ from __future__ import unicode_literals -from django.db.models.indexes import Index +from django.db.models import Index __all__ = ['BrinIndex', 'GinIndex'] |
