Skip to content

Commit 7119589

Browse files
authored
docutils: Correct 'parsers.rst.directives.format_values' (#11719)
1 parent bb1f813 commit 7119589

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stubs/docutils/docutils/parsers/rst/directives/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ def positive_int(argument: str) -> int: ...
3636
def positive_int_list(argument: str) -> list[int]: ...
3737
def encoding(argument: str) -> str: ...
3838
def choice(argument: str, values: Sequence[str]) -> str: ...
39-
def format_values(values: Sequence[str]) -> str: ...
39+
def format_values(values: Sequence[object]) -> str: ...
4040
def value_or(values: Container[str], other: Callable[[str], str]) -> Callable[[str], str]: ...
4141
def parser_name(argument: str | None) -> type[Parser] | None: ...

0 commit comments

Comments
 (0)