Skip to content

Commit cb7e45f

Browse files
authored
fix an indent issue.
1 parent 84acc48 commit cb7e45f

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

shape_engine/__init__.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,12 @@
9696

9797
try:
9898
from io import StringIO
99+
except ImportError:
100+
try:
101+
from cStringIO import StringIO
99102
except ImportError:
100-
try:
101-
from cStringIO import StringIO
102-
except ImportError:
103-
from StringIO import StringIO
103+
from StringIO import StringIO
104+
104105

105106
DEFAULT_FIELD_NAME_LENGTH = 10
106107

0 commit comments

Comments
 (0)