From 1832bec2a6e22c591af0aed5b0bdf7575b325f22 Mon Sep 17 00:00:00 2001 From: Ross Barnowski Date: Wed, 12 Nov 2025 14:59:53 -0800 Subject: [PATCH] MAINT: rm unused kwarg from private method. --- numpydoc/docscrape_sphinx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numpydoc/docscrape_sphinx.py b/numpydoc/docscrape_sphinx.py index 3b2f325a..ee1187d4 100644 --- a/numpydoc/docscrape_sphinx.py +++ b/numpydoc/docscrape_sphinx.py @@ -37,7 +37,7 @@ def load_config(self, config): self.template = template_env.get_template("numpydoc_docstring.rst") # string conversion routines - def _str_header(self, name, symbol="`"): + def _str_header(self, name): return [".. rubric:: " + name, ""] def _str_field_list(self, name):