summaryrefslogtreecommitdiff
path: root/numpydoc/numpydoc.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpydoc/numpydoc.py')
-rw-r--r--numpydoc/numpydoc.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/numpydoc/numpydoc.py b/numpydoc/numpydoc.py
index 8fa4f0a..509f053 100644
--- a/numpydoc/numpydoc.py
+++ b/numpydoc/numpydoc.py
@@ -171,7 +171,6 @@ def mangle_docstrings(app, what, name, obj, options, lines):
cfg = {
"use_plots": app.config.numpydoc_use_plots,
- "use_blockquotes": app.config.numpydoc_use_blockquotes,
"show_class_members": app.config.numpydoc_show_class_members,
"show_inherited_class_members": show_inherited_class_members,
"class_members_toctree": app.config.numpydoc_class_members_toctree,
@@ -274,7 +273,6 @@ def setup(app, get_doc_object_=get_doc_object):
app.connect("doctree-read", relabel_references)
app.connect("doctree-resolved", clean_backrefs)
app.add_config_value("numpydoc_use_plots", None, False)
- app.add_config_value("numpydoc_use_blockquotes", None, False)
app.add_config_value("numpydoc_show_class_members", True, True)
app.add_config_value(
"numpydoc_show_inherited_class_members", True, True, types=(bool, dict)