Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused imports. #162

Merged
merged 1 commit into from
May 20, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 0 additions & 2 deletions scripts/artifacts.py
Expand Up @@ -3,8 +3,6 @@
except ImportError:
from urllib import urlopen

import glob
import io
import json
import os
import re
Expand Down
1 change: 0 additions & 1 deletion scripts/make_docs.py
@@ -1,7 +1,6 @@
#!/usr/bin/env python
import os
import subprocess
import shutil

SPHINX_BUILD = 'sphinx-build'

Expand Down
2 changes: 1 addition & 1 deletion simplejson/decoder.py
Expand Up @@ -4,7 +4,7 @@
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():
Expand Down