diff options
author | Mike Taves <mwtoews@gmail.com> | 2020-02-05 08:21:51 +1300 |
---|---|---|
committer | Mike Taves <mwtoews@gmail.com> | 2020-02-06 22:16:23 +1300 |
commit | 07bf33fbf5be8143aab037dc65aba3086f8badf6 (patch) | |
tree | 8f48992ca38bafe589ed331f54c43106ba23902d /doc/source/conf.py | |
parent | a9bc5db4671c6c702e3a8a35fbf31b8d3225fad2 (diff) | |
download | numpy-07bf33fbf5be8143aab037dc65aba3086f8badf6.tar.gz |
MAINT: cleanup unused imports; avoid redefinition of imports
* Cleanup unused imports (F401) of mostly standard Python modules,
or some internal but unlikely referenced modules
* Where internal imports are potentially used, mark with noqa
* Avoid redefinition of imports (F811)
Diffstat (limited to 'doc/source/conf.py')
-rw-r--r-- | doc/source/conf.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py index 11be7ec1c..905fa2711 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -257,7 +257,6 @@ numpydoc_use_plots = True # Autosummary # ----------------------------------------------------------------------------- -import glob autosummary_generate = True # ----------------------------------------------------------------------------- @@ -381,7 +380,6 @@ def linkcode_resolve(domain, info): numpy.__version__, fn, linespec) from pygments.lexers import CLexer -from pygments import token import copy class NumPyLexer(CLexer): |