Skip to content

Commit

Permalink
Make sphinx quiet
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasjuhrich committed Jan 25, 2024
1 parent 43521b1 commit 114d9ca
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,11 @@
}
# see https://github.com/sphinx-doc/sphinx/issues/10480#issuecomment-1221396022
import sphinx.ext.autodoc
sphinx.ext.autodoc.NewTypeDataDocumenter.directivetype = 'class'

try:
sphinx.ext.autodoc.NewTypeDataDocumenter.directivetype = "class"
except AttributeError:
pass

todo_include_todos = True
# -- Options for HTML output ---------------------------------------------------
Expand Down

0 comments on commit 114d9ca

Please sign in to comment.