Files
typeshed/stubs/docopt/docopt.pyi
Sebastian Rittau 4ac3ccad45 black: enable skip_magic_trailing_comma (#5252)
* black: enable skip_magic_trailing_comma

* Remove spurious commas
2021-04-27 08:32:32 -07:00

10 lines
306 B
Python

from typing import Any, Iterable, Optional, Union
__version__: str
_Argv = Union[Iterable[str], str]
def docopt(
doc: str, argv: Optional[_Argv] = ..., help: bool = ..., version: Optional[Any] = ..., options_first: bool = ...
) -> dict[str, Any]: ... # Really should be dict[str, Union[str, bool]]