TST CLN: move import and remove whitespace

This commit is contained in:
Kelsey Jordahl
2015-11-17 21:05:31 -07:00
parent 5ae151ca23
commit a3ff4f6c5b
+1 -2
View File
@@ -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