From c2d36fe8dfda8ba5b3f75c6fb02514d0e8d2ee7c Mon Sep 17 00:00:00 2001 From: Manideep Malyala Date: Mon, 24 Aug 2026 00:36:41 +0530 Subject: [PATCH] style: fix typing for SandboxPathGrant --- strix/runtime/session_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strix/runtime/session_manager.py b/strix/runtime/session_manager.py index 2f83fd1d..9523d0f4 100644 --- a/strix/runtime/session_manager.py +++ b/strix/runtime/session_manager.py @@ -158,7 +158,7 @@ def build_manifest_grants(local_sources: list[dict[str, Any]]) -> list[SandboxPa if not ws_subdir or not host_path: continue resolved = Path(host_path).expanduser().resolve() - grants.append(SandboxPathGrant(path=resolved, read_only=True)) + grants.append(SandboxPathGrant(path=str(resolved), read_only=True)) return grants