We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd13185 commit c2f6bb7Copy full SHA for c2f6bb7
1 file changed
tests/test_feature.py
@@ -1,8 +1,11 @@
1
import sys, java, unittest
2
-import simplejson as json
3
import xpath
4
from xml.dom import minidom as dom
5
from geoscript import geom, proj, feature
+try:
6
+ import json
7
+except ImportError:
8
+ import simplejson as json
9
10
class Feature_Test:
11
0 commit comments