(self, value: object)
| 400 | raise NotImplementedError("Not implemented") |
| 401 | |
| 402 | def __eq__(self, value: object) -> bool: |
| 403 | if type(value) is not type(self): |
| 404 | return False |
| 405 | |
| 406 | from dask.tokenize import tokenize |
| 407 | |
| 408 | return tokenize(self) == tokenize(value) |
| 409 | |
| 410 | @property |
| 411 | def is_coro(self) -> bool: |
nothing calls this directly
no test coverage detected