mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
Fix typed_ast's Num type (#2387)
This commit is contained in:
committed by
Jukka Lehtosalo
parent
700efc43dd
commit
d45fc3daaf
2
third_party/3/typed_ast/ast3.pyi
vendored
2
third_party/3/typed_ast/ast3.pyi
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user