Skip to content

Commit

Permalink
Fix autosummary
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Jul 24, 2022
1 parent 188dba1 commit 47a8d8b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sphinx/ext/autosummary/generate.py
Expand Up @@ -79,11 +79,12 @@ class AutosummaryEntry(NamedTuple):
def setup_documenters(app: Any) -> None:
from sphinx.ext.autodoc import (AttributeDocumenter, ClassDocumenter, DataDocumenter,
DecoratorDocumenter, ExceptionDocumenter,
NewTypeClassDocumenter,
FunctionDocumenter, MethodDocumenter, ModuleDocumenter,
PropertyDocumenter)
documenters: List[Type[Documenter]] = [
ModuleDocumenter, ClassDocumenter, ExceptionDocumenter, DataDocumenter,
FunctionDocumenter, MethodDocumenter,
FunctionDocumenter, MethodDocumenter, NewTypeClassDocumenter,
AttributeDocumenter, DecoratorDocumenter, PropertyDocumenter,
]
for documenter in documenters:
Expand Down

0 comments on commit 47a8d8b

Please sign in to comment.