(
self,
*,
spec: openshell_pb2.SandboxSpec | None = None,
)
| 409 | return sandbox_ref |
| 410 | |
| 411 | def create_session( |
| 412 | self, |
| 413 | *, |
| 414 | spec: openshell_pb2.SandboxSpec | None = None, |
| 415 | ) -> SandboxSession: |
| 416 | return SandboxSession(self, self.create(spec=spec)) |
| 417 | |
| 418 | def get(self, sandbox_name: str) -> SandboxRef: |
| 419 | response = self._stub.GetSandbox( |
no test coverage detected