From 3e612aa86e0267de43607a865aa88159fc0aad5f Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Fri, 10 Mar 2023 16:06:55 +0100 Subject: [PATCH] docs: sort extensions It's easier to keep this sorted if we have each element on a separate line. Let's do that for long-term ease of maintainability. Reviewed-by: Eric Engestrom Part-of: --- docs/conf.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 9515194..edee6d9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -38,7 +38,13 @@ sys.path.append(os.path.abspath('_exts')) # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. -extensions = ['sphinx.ext.graphviz', 'breathe', 'formatting', 'nir', 'redirects'] +extensions = [ + 'breathe', + 'formatting', + 'nir', + 'redirects', + 'sphinx.ext.graphviz', +] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] -- 2.7.4