diff options
author | Georg Brandl <georg@python.org> | 2009-09-04 00:05:09 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-09-04 00:05:09 +0200 |
commit | dcff10ddaa6553c633db886b2aa9a43bf402749b (patch) | |
tree | b3cb7e8f2ed53661f220be320e937013b52bff08 /sphinx/ext/autodoc.py | |
parent | e9fc8d890ce568d279e40da28f6b2f3d3f3ee75f (diff) | |
download | sphinx-git-dcff10ddaa6553c633db886b2aa9a43bf402749b.tar.gz |
Cleanup unused imports.
Diffstat (limited to 'sphinx/ext/autodoc.py')
-rw-r--r-- | sphinx/ext/autodoc.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sphinx/ext/autodoc.py b/sphinx/ext/autodoc.py index 988a82e02..a5e90b6f4 100644 --- a/sphinx/ext/autodoc.py +++ b/sphinx/ext/autodoc.py @@ -14,8 +14,7 @@ import re import sys import inspect -from types import ModuleType, FunctionType, BuiltinFunctionType, MethodType, \ - ClassType +from types import FunctionType, BuiltinFunctionType, MethodType, ClassType from docutils import nodes from docutils.utils import assemble_option_dict |