From 9134f7bc3cd46f87c5b88a349082b139444faeac Mon Sep 17 00:00:00 2001 From: Jukka Lehtosalo Date: Sun, 25 Oct 2020 00:39:51 +0100 Subject: [PATCH] Fix type of typed_ast.ast27.Str.s (#4703) The original type was too narrow. --- third_party/3/typed_ast/ast27.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/3/typed_ast/ast27.pyi b/third_party/3/typed_ast/ast27.pyi index 760efdbc8..139e58aac 100644 --- a/third_party/3/typed_ast/ast27.pyi +++ b/third_party/3/typed_ast/ast27.pyi @@ -239,7 +239,7 @@ class Num(expr): n: Union[int, float, complex] class Str(expr): - s: bytes + s: Union[str, bytes] kind: str class Attribute(expr):