ray/python/ray/_raylet.pyi
Simon Mo 4c52adddfa
[Core] Type check ObjectRef (#9856)
* Type check ObjectRef

* Bug fix

* Port typing tests to bazel test
2020-08-11 10:38:29 -07:00

11 lines
144 B
Python

from typing import Any, Awaitable, TypeVar
R = TypeVar("R")
class ObjectRef(Awaitable[R]):
pass
class ObjectID(Awaitable[R]):
pass