1
0
mirror of https://github.com/django/django.git synced 2025-03-31 19:46:42 +00:00

Removed unused imports.

This commit is contained in:
Tim Graham 2014-03-29 08:54:30 -04:00
parent 41903d025a
commit 2cc8840397
3 changed files with 2 additions and 3 deletions

View File

@ -50,7 +50,6 @@ from django.contrib.gis.gdal.base import GDALBase
from django.contrib.gis.gdal.envelope import Envelope, OGREnvelope from django.contrib.gis.gdal.envelope import Envelope, OGREnvelope
from django.contrib.gis.gdal.error import OGRException, OGRIndexError, SRSException from django.contrib.gis.gdal.error import OGRException, OGRIndexError, SRSException
from django.contrib.gis.gdal.geomtype import OGRGeomType from django.contrib.gis.gdal.geomtype import OGRGeomType
from django.contrib.gis.gdal.libgdal import GDAL_VERSION
from django.contrib.gis.gdal.srs import SpatialReference, CoordTransform from django.contrib.gis.gdal.srs import SpatialReference, CoordTransform
# Getting the ctypes prototype functions that interface w/the GDAL C library. # Getting the ctypes prototype functions that interface w/the GDAL C library.

View File

@ -9,7 +9,7 @@ from django.contrib.gis import memoryview
from ..import HAS_GEOS from ..import HAS_GEOS
if HAS_GEOS: if HAS_GEOS:
from .. import GEOSGeometry, WKTReader, WKTWriter, WKBReader, WKBWriter, geos_version_info from .. import GEOSGeometry, WKTReader, WKTWriter, WKBReader, WKBWriter
@skipUnless(HAS_GEOS, "Geos is required.") @skipUnless(HAS_GEOS, "Geos is required.")

View File

@ -3,7 +3,7 @@ from __future__ import unicode_literals
from unittest import skipUnless from unittest import skipUnless
from django.contrib.gis.geos import HAS_GEOS from django.contrib.gis.geos import HAS_GEOS
from django.contrib.gis.tests.utils import HAS_SPATIAL_DB, mysql, oracle, no_mysql, no_oracle, no_spatialite from django.contrib.gis.tests.utils import HAS_SPATIAL_DB, mysql, no_mysql, no_oracle, no_spatialite
from django.test import TestCase from django.test import TestCase
if HAS_GEOS: if HAS_GEOS: