diff options
author | Nick Pope <nick.pope@flightdataservices.com> | 2019-08-20 08:54:41 +0100 |
---|---|---|
committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-02-04 13:20:06 +0100 |
commit | 335c9c94acf263901fb023404408880245b0c4b4 (patch) | |
tree | 691e9683de6c9840cd0a9a097d020c499ea735db /django/db/backends/postgresql/introspection.py | |
parent | 469bf2db15597f2c87cb0f8f64132056d2467f15 (diff) | |
download | django-335c9c94acf263901fb023404408880245b0c4b4.tar.gz |
Simplified imports from django.db and django.contrib.gis.db.
Diffstat (limited to 'django/db/backends/postgresql/introspection.py')
-rw-r--r-- | django/db/backends/postgresql/introspection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/postgresql/introspection.py b/django/db/backends/postgresql/introspection.py index b7bf18691c..beec8619cc 100644 --- a/django/db/backends/postgresql/introspection.py +++ b/django/db/backends/postgresql/introspection.py @@ -1,7 +1,7 @@ from django.db.backends.base.introspection import ( BaseDatabaseIntrospection, FieldInfo, TableInfo, ) -from django.db.models.indexes import Index +from django.db.models import Index class DatabaseIntrospection(BaseDatabaseIntrospection): |