From 37e49971efa74310b300468a5b3cf531319c6536 Mon Sep 17 00:00:00 2001 From: Ivan Menshikh Date: Wed, 27 Jun 2018 13:37:16 +0500 Subject: [PATCH] Disable google-style docstring support. Fix #1663 (#2106) --- docs/src/conf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/src/conf.py b/docs/src/conf.py index 31d512262c..71eb9a9014 100644 --- a/docs/src/conf.py +++ b/docs/src/conf.py @@ -28,6 +28,8 @@ extensions = ['sphinx.ext.autodoc', 'sphinxcontrib.napoleon', 'sphinx.ext.imgmath', 'sphinxcontrib.programoutput'] autoclass_content = "both" +napoleon_google_docstring = False # Disable support for google-style docstring + # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates']