From cd1c31ff6cdb37dcfd4388d63f539d784918a24b Mon Sep 17 00:00:00 2001 From: Nathan Williis Date: Mon, 2 Sep 2024 17:13:48 +0100 Subject: [PATCH] Docs: reorder Sphinx extensions. Napoleon must precede autodoc or it will trigger superfluous warnings about indentation. --- Doc/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/source/conf.py b/Doc/source/conf.py index cee66549b..4976bd813 100644 --- a/Doc/source/conf.py +++ b/Doc/source/conf.py @@ -31,9 +31,9 @@ needs_sphinx = "1.3" # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ + "sphinx.ext.napoleon", "sphinx.ext.autodoc", "sphinx.ext.viewcode", - "sphinx.ext.napoleon", "sphinx.ext.coverage", "sphinx.ext.autosectionlabel", ]