Fix ruff S603 noqa placement on subprocess.run line

Co-Authored-By: João <joao@crewai.com>
This commit is contained in:
Devin AI
2026-02-19 11:42:55 +00:00
parent fefa6761f9
commit 71586583b9

View File

@@ -415,8 +415,8 @@ class CodeInterpreterTool(BaseTool):
Printer.print("WARNING: Running code in unsafe mode", color="bold_magenta")
# Install libraries on the host machine
for library in libraries_used:
subprocess.run(
["pip", "install", library], # noqa: S603, S607
subprocess.run( # noqa: S603
["pip", "install", library], # noqa: S607
check=True,
capture_output=True,
)