From cd522c3b4dde821766d95c80ae5aeb43d7a41170 Mon Sep 17 00:00:00 2001 From: HemangChothani <50404902+HemangChothani@users.noreply.github.com> Date: Thu, 18 Jun 2020 22:50:02 +0530 Subject: [PATCH] fix(python): change autodoc_default_flags to autodoc_default_options (#629) --- synthtool/gcp/templates/python_library/docs/conf.py.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synthtool/gcp/templates/python_library/docs/conf.py.j2 b/synthtool/gcp/templates/python_library/docs/conf.py.j2 index b46ed80f8..34634c154 100644 --- a/synthtool/gcp/templates/python_library/docs/conf.py.j2 +++ b/synthtool/gcp/templates/python_library/docs/conf.py.j2 @@ -43,7 +43,7 @@ extensions = [ # autodoc/autosummary flags autoclass_content = "both" -autodoc_default_flags = ["members"] +autodoc_default_options = {"members": True} autosummary_generate = True