Fix typed_ast's Num type (#2387)

This commit is contained in:
Michael J. Sullivan
2018-08-16 03:36:13 -07:00
committed by Jukka Lehtosalo
parent 700efc43dd
commit d45fc3daaf

View File

@@ -260,7 +260,7 @@ class Call(expr):
keywords = ... # type: typing.List[keyword]
class Num(expr):
n = ... # type: float
n = ... # type: Union[float, int, complex]
class Str(expr):
s = ... # type: str