style: fix typing for SandboxPathGrant

This commit is contained in:
Manideep Malyala 2026-08-24 00:36:41 +05:30
parent 770275095a
commit c2d36fe8df

View file

@ -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