Fix type of typed_ast.ast27.Str.s (#4703)

The original type was too narrow.
This commit is contained in:
Jukka Lehtosalo
2020-10-25 00:39:51 +01:00
committed by GitHub
parent 71e2cdcc68
commit 9134f7bc3c

View File

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