fix: remove unnecessary type ignore on second sandlock import (already cached by mypy)

Co-Authored-By: João <joao@crewai.com>
This commit is contained in:
Devin AI
2026-03-27 22:34:25 +00:00
parent 15fad26cc0
commit fcd6d7f27a

View File

@@ -474,7 +474,7 @@ class CodeInterpreterTool(BaseTool):
"(pip install sandlock) and you are running on Linux 5.13+."
)
from sandlock import Sandbox # type: ignore[import-untyped]
from sandlock import Sandbox
Printer.print(
"Running code in sandlock sandbox (Landlock + seccomp-bpf)",