mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 12:14:27 +08:00
distutils.fancy_getopt short option is optional (#3469)
This commit is contained in:
committed by
Jukka Lehtosalo
parent
838e02334e
commit
e065803980
@@ -5,7 +5,7 @@ from typing import (
|
||||
TypeVar, overload,
|
||||
)
|
||||
|
||||
_Option = Tuple[str, str, str]
|
||||
_Option = Tuple[str, Optional[str], str]
|
||||
_GR = Tuple[List[str], OptionDummy]
|
||||
|
||||
def fancy_getopt(options: List[_Option],
|
||||
|
||||
Reference in New Issue
Block a user