mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
Big diff: Use new "|" union syntax (#5872)
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
from typing import Any, Iterable, Optional, Union
|
||||
from typing import Any, Iterable, 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]]
|
||||
doc: str, argv: _Argv | None = ..., help: bool = ..., version: Any | None = ..., options_first: bool = ...
|
||||
) -> dict[str, Any]: ... # Really should be dict[str, str | bool]
|
||||
|
||||
Reference in New Issue
Block a user