From e453940b3f106f4d5e8075557d7467ecef85a1e7 Mon Sep 17 00:00:00 2001 From: Jacob Wasserman Date: Sun, 27 Jul 2014 21:19:54 -0400 Subject: [PATCH] Remove unused imports. --- tests/test_geocode.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test_geocode.py b/tests/test_geocode.py index 494c0d2..5c9341f 100644 --- a/tests/test_geocode.py +++ b/tests/test_geocode.py @@ -34,7 +34,6 @@ class TestGeocode(unittest.TestCase): def test_prepare_result(self): # Calls _prepare_result with sample results from the geocoder call # loop - from geopandas.tools.geocoding import _prepare_geocode_result p0 = Point(12.3, -45.6) # Treat these as lat/lon p1 = Point(-23.4, 56.7) d = {'a': ('address0', p0.coords[0]), @@ -58,7 +57,6 @@ class TestGeocode(unittest.TestCase): self.assertAlmostEqual(coords[1], test[0]) def test_prepare_result_none(self): - from geopandas.tools.geocoding import _prepare_geocode_result p0 = Point(12.3, -45.6) # Treat these as lat/lon d = {'a': ('address0', p0.coords[0]), 'b': (None, None)}