From a3ff4f6c5bd6d9ef5d6892a126d84a93c419934e Mon Sep 17 00:00:00 2001 From: Kelsey Jordahl Date: Tue, 17 Nov 2015 21:05:31 -0700 Subject: [PATCH] TST CLN: move import and remove whitespace --- geopandas/tests/util.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/geopandas/tests/util.py b/geopandas/tests/util.py index d3250e8..c700442 100644 --- a/geopandas/tests/util.py +++ b/geopandas/tests/util.py @@ -1,5 +1,6 @@ import io import os.path +import sys from six.moves.urllib.request import urlopen from geopandas import GeoDataFrame, GeoSeries @@ -8,13 +9,11 @@ HERE = os.path.abspath(os.path.dirname(__file__)) PACKAGE_DIR = os.path.dirname(os.path.dirname(HERE)) # Compatibility layer for Python 2.6: try loading unittest2 -import sys if sys.version_info[:2] == (2, 6): try: import unittest2 as unittest except ImportError: import unittest - else: import unittest