(file_path, read_kwargs)
| 407 | |
| 408 | @ray.remote |
| 409 | def _remote(file_path, read_kwargs): |
| 410 | import ray |
| 411 | |
| 412 | return ray.data.read_parquet(file_path, **read_kwargs) |
| 413 | |
| 414 | opts = self._get_task_options() |
| 415 | remote_fn = _remote.options(**opts) if opts else _remote |
nothing calls this directly
no test coverage detected