Added a missing import and removed an unneeded import

This commit is contained in:
Alex Gaynor 2013-12-24 08:35:13 -08:00
parent 828c9be436
commit dbe2fb632d
2 changed files with 1 additions and 1 deletions

View File

@ -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

View File

@ -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