diff --git a/third_party/3/typed_ast/ast35.pyi b/third_party/3/typed_ast/ast35.pyi index 738ac7d8b9d1..04e8a295d19f 100644 --- a/third_party/3/typed_ast/ast35.pyi +++ b/third_party/3/typed_ast/ast35.pyi @@ -88,8 +88,9 @@ class Delete(stmt): class Assign(stmt): targets = ... # type: typing.List[expr] - value = ... # type: expr + value = ... # type: Optional[expr] type_comment = ... # type: Optional[str] + annotation = ... # type: Optional[expr] class AugAssign(stmt): target = ... # type: expr