Skip to content

Commit

Permalink
docutils: Correct 'parsers.rst.directives.format_values' (python#11719)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenfin authored Apr 5, 2024
1 parent bb1f813 commit 7119589
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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: ...

0 comments on commit 7119589

Please sign in to comment.