(
self, *data: Any, **kwargs: Any
)
| 78 | ) # type: ignore[no-untyped-call] |
| 79 | |
| 80 | def compute( |
| 81 | self, *data: Any, **kwargs: Any |
| 82 | ) -> tuple[np.ndarray[Any, _DType_co], ...]: |
| 83 | from dask.array import compute |
| 84 | |
| 85 | return compute(*data, **kwargs) # type: ignore[no-untyped-call, no-any-return] |
| 86 | |
| 87 | def persist(self, *data: Any, **kwargs: Any) -> tuple[DaskArray | Any, ...]: |
| 88 | from dask import persist |
no outgoing calls
no test coverage detected