diff mbox series

devtool: package: Drop unnecessary import

Message ID 20260106-devtool-package-v1-1-c205ebf09867@pbarker.dev
State Under Review
Headers show
Series devtool: package: Drop unnecessary import | expand

Commit Message

Paul Barker Jan. 6, 2026, 3:48 p.m. UTC
The package module in devtool never actually used subprocess.

Signed-off-by: Paul Barker <paul@pbarker.dev>
---
 scripts/lib/devtool/package.py | 1 -
 1 file changed, 1 deletion(-)


---
base-commit: 0ed4776533145c901611d7f4f942490e33481335
change-id: 20260106-devtool-package-b4738d0f90ee

Best regards,
diff mbox series

Patch

diff --git a/scripts/lib/devtool/package.py b/scripts/lib/devtool/package.py
index c2367342c3a8..c8be176127d0 100644
--- a/scripts/lib/devtool/package.py
+++ b/scripts/lib/devtool/package.py
@@ -7,7 +7,6 @@ 
 """Devtool plugin containing the package subcommands"""
 
 import os
-import subprocess
 import logging
 from bb.process import ExecutionError
 from devtool import exec_build_env_command, setup_tinfoil, check_workspace_recipe, DevtoolError