mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-09 13:02:22 +08:00
Use float instead of Union[int, float] (#2308)
This commit is contained in:
committed by
Jelle Zijlstra
parent
2a888416b2
commit
5bb58af6c8
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: Union[int, float]
|
||||
n = ... # type: float
|
||||
|
||||
class Str(expr):
|
||||
s = ... # type: str
|
||||
|
||||
Reference in New Issue
Block a user