Remove unused imports for flake8 compliance

Remove unused imports from `docs/conf.py` and `setup.py`.
This commit is contained in:
Diego Moreda 2016-03-02 16:20:48 +01:00
parent 65699fe250
commit 703b3962a1
2 changed files with 2 additions and 4 deletions

View File

@ -13,8 +13,8 @@
# All configuration values have a default; values that are commented out
# serve to show the default.
import sys
import os
# import sys
# import os
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the

View File

@ -2,11 +2,9 @@
import os
import sys
from setuptools import setup, Extension, Command
from distutils.command.build import build
from distutils.command.build_ext import build_ext
from distutils.errors import (
CCompilerError, DistutilsExecError, DistutilsPlatformError)
from distutils import log
# large portions ripped off from simplejson's setup.py