From 711958977ffa9a6f981de7763cfa8b3319cbe797 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Fri, 5 Apr 2024 17:47:03 +0100 Subject: [PATCH] docutils: Correct 'parsers.rst.directives.format_values' (#11719) --- stubs/docutils/docutils/parsers/rst/directives/__init__.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/docutils/docutils/parsers/rst/directives/__init__.pyi b/stubs/docutils/docutils/parsers/rst/directives/__init__.pyi index a56e6f126..e4a048509 100644 --- a/stubs/docutils/docutils/parsers/rst/directives/__init__.pyi +++ b/stubs/docutils/docutils/parsers/rst/directives/__init__.pyi @@ -36,6 +36,6 @@ def positive_int(argument: str) -> int: ... def positive_int_list(argument: str) -> list[int]: ... def encoding(argument: str) -> str: ... def choice(argument: str, values: Sequence[str]) -> str: ... -def format_values(values: Sequence[str]) -> str: ... +def format_values(values: Sequence[object]) -> str: ... def value_or(values: Container[str], other: Callable[[str], str]) -> Callable[[str], str]: ... def parser_name(argument: str | None) -> type[Parser] | None: ...