add AST.__init__ annotation (#184)

This commit is contained in:
Valérian Rousset
2016-05-05 12:32:06 +02:00
committed by Jukka Lehtosalo
parent 292447bd62
commit c2194c9761

View File

@@ -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):
...