mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-09 04:52:23 +08:00
add AST.__init__ annotation (#184)
This commit is contained in:
committed by
Jukka Lehtosalo
parent
292447bd62
commit
c2194c9761
@@ -9,7 +9,7 @@ identifier = str
|
||||
class AST:
|
||||
_attributes = ... # type: typing.Tuple[str, ...]
|
||||
_fields = ... # type: typing.Tuple[str, ...]
|
||||
def __init__(self, *args, **kwargs) -> None: ...
|
||||
def __init__(self, *args: Any, **kwargs: Any) -> None: ...
|
||||
|
||||
class mod(AST):
|
||||
...
|
||||
|
||||
Reference in New Issue
Block a user