From c2194c9761c6eb4e9be90bac9b1bd7b8fc822d05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Val=C3=A9rian=20Rousset?= Date: Thu, 5 May 2016 12:32:06 +0200 Subject: [PATCH] add AST.__init__ annotation (#184) --- stdlib/3/_ast.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/3/_ast.pyi b/stdlib/3/_ast.pyi index 23bf799a4..0c3915636 100644 --- a/stdlib/3/_ast.pyi +++ b/stdlib/3/_ast.pyi @@ -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): ...