mirror of
https://github.com/usestrix/strix.git
synced 2026-09-05 08:06:08 +00:00
style: fix typing for SandboxPathGrant
This commit is contained in:
parent
770275095a
commit
c2d36fe8df
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue