summaryrefslogtreecommitdiff
path: root/simplejson
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2017-05-20 12:22:34 -0700
committerGitHub <noreply@github.com>2017-05-20 12:22:34 -0700
commit3cfafa4865d6a97f7f92d04c9434a04fe82c5df0 (patch)
tree6eddda003f37b38c472dab896c2ac6faf64db2c3 /simplejson
parent02168b6319a508558129ece2354906d0cd6b170b (diff)
parentf3d815124841e3ece1b234b16c65370efe45ff3f (diff)
downloadsimplejson-3cfafa4865d6a97f7f92d04c9434a04fe82c5df0.tar.gz
Merge pull request #162 from chrisgavin/unused-imports
Remove unused imports.
Diffstat (limited to 'simplejson')
-rw-r--r--simplejson/decoder.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/simplejson/decoder.py b/simplejson/decoder.py
index 48f46c9..e0b55a4 100644
--- a/simplejson/decoder.py
+++ b/simplejson/decoder.py
@@ -4,7 +4,7 @@ from __future__ import absolute_import
import re
import sys
import struct
-from .compat import b, u, text_type, binary_type, PY3, unichr
+from .compat import u, text_type, binary_type, PY3, unichr
from .scanner import make_scanner, JSONDecodeError
def _import_c_scanstring():