Add docopt.printable_usage (#7913)

This commit is contained in:
eggplants
2022-05-22 01:33:04 +09:00
committed by GitHub
parent ddc6eda10a
commit 6d372ffc09

View File

@@ -6,6 +6,7 @@ __version__: str
_Argv: TypeAlias = Iterable[str] | str
def printable_usage(doc: str) -> str: ...
def docopt(
doc: str, argv: _Argv | None = ..., help: bool = ..., version: Any | None = ..., options_first: bool = ...
) -> dict[str, Any]: ... # Really should be dict[str, str | bool]