(self, value: object)
| 409 | raise NotImplementedError("Not implemented") |
| 410 | |
| 411 | def __eq__(self, value: object) -> bool: |
| 412 | if type(value) is not type(self): |
| 413 | return False |
| 414 | |
| 415 | from dask.tokenize import tokenize |
| 416 | |
| 417 | return tokenize(self) == tokenize(value) |
| 418 | |
| 419 | @property |
| 420 | def is_coro(self) -> bool: |
nothing calls this directly
no test coverage detected