fix: run local python in session workspace (#8792)

This commit is contained in:
エイカク
2026-06-15 21:52:00 +09:00
committed by GitHub
parent 6f88ad9a35
commit dd828c99f4
4 changed files with 60 additions and 1 deletions

View File

@@ -14,6 +14,7 @@ class PythonComponent(Protocol):
kernel_id: str | None = None,
timeout: int = 30,
silent: bool = False,
cwd: str | None = None,
) -> dict[str, Any]:
"""Execute Python code"""
...