(self)
| 681 | |
| 682 | @property |
| 683 | def sandbox(self) -> SandboxRef: |
| 684 | if self._session is None: |
| 685 | raise SandboxError("sandbox context has not been entered") |
| 686 | return self._session.sandbox |
| 687 | |
| 688 | def __enter__(self) -> Sandbox: |
| 689 | client = SandboxClient.from_active_cluster( |
nothing calls this directly
no test coverage detected