mirror of https://github.com/django/django.git
Added a missing import and removed an unneeded import
This commit is contained in:
parent
828c9be436
commit
dbe2fb632d
|
@ -1,4 +1,5 @@
|
|||
from .base import GEOSBase
|
||||
from .error import GEOSException
|
||||
from .geometry import GEOSGeometry
|
||||
from .libgeos import geos_version_info
|
||||
from .prototypes import prepared as capi
|
||||
|
|
|
@ -2,7 +2,6 @@ from __future__ import unicode_literals
|
|||
|
||||
from django.utils.six import StringIO
|
||||
|
||||
from django.apps import apps
|
||||
from django.contrib.auth.models import Permission
|
||||
from django.contrib.contenttypes.models import ContentType
|
||||
from django.core import management
|
||||
|
|
Loading…
Reference in New Issue