From 67d4c71b196df6089050fd409a92d52f2130f45d Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Tue, 3 Oct 2023 22:23:41 -0400 Subject: [PATCH] docs: Update autodoc variable name --- docs/conf.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 11f25a2..1936222 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -33,7 +33,11 @@ htmlhelp_basename = 'agateremotedoc' -autodoc_member_order = 'bysource' +autodoc_default_options = { + 'members': None, + 'member-order': 'bysource', + 'show-inheritance': True, +} intersphinx_mapping = { 'python': ('https://docs.python.org/3', None),