Remove unused imports for flake8 compliance
Remove unused imports from `docs/conf.py` and `setup.py`.
This commit is contained in:
parent
65699fe250
commit
703b3962a1
|
@ -13,8 +13,8 @@
|
||||||
# All configuration values have a default; values that are commented out
|
# All configuration values have a default; values that are commented out
|
||||||
# serve to show the default.
|
# serve to show the default.
|
||||||
|
|
||||||
import sys
|
# import sys
|
||||||
import os
|
# import os
|
||||||
|
|
||||||
# If extensions (or modules to document with autodoc) are in another directory,
|
# 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
|
# add these directories to sys.path here. If the directory is relative to the
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -2,11 +2,9 @@
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
from setuptools import setup, Extension, Command
|
from setuptools import setup, Extension, Command
|
||||||
from distutils.command.build import build
|
|
||||||
from distutils.command.build_ext import build_ext
|
from distutils.command.build_ext import build_ext
|
||||||
from distutils.errors import (
|
from distutils.errors import (
|
||||||
CCompilerError, DistutilsExecError, DistutilsPlatformError)
|
CCompilerError, DistutilsExecError, DistutilsPlatformError)
|
||||||
from distutils import log
|
|
||||||
|
|
||||||
# large portions ripped off from simplejson's setup.py
|
# large portions ripped off from simplejson's setup.py
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue