(exp_config, workdir: Path)
| 120 | def make_sandbox_factory(docker_cfg: DockerSandboxConfig): |
| 121 | """Return a factory function that creates DockerSandbox instances.""" |
| 122 | def factory(exp_config, workdir: Path): |
| 123 | return DockerSandbox(docker_cfg, workdir) |
| 124 | return factory |
| 125 | |
| 126 |
nothing calls this directly
no test coverage detected