From 6f3b95cc55d397bae16512407ab4c5d6189e2953 Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Tue, 3 Oct 2023 22:23:44 -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 6fd6285..c7b6e78 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -33,7 +33,11 @@ htmlhelp_basename = 'agatestatsdoc' -autodoc_member_order = 'bysource' +autodoc_default_options = { + 'members': None, + 'member-order': 'bysource', + 'show-inheritance': True, +} intersphinx_mapping = { 'python': ('https://docs.python.org/3', None),