koichi12's picture
Add files using upload-large-folder tool
80c179b verified
raw
history blame
169 Bytes
from typing import Awaitable, TypeVar
R = TypeVar("R")
class ObjectRef(Awaitable[R]): # type: ignore
pass
class ObjectID(Awaitable[R]): # type: ignore
pass