From 131c8815a3ba085a70c815d25431ca4b9294699d Mon Sep 17 00:00:00 2001 From: ranaaditya Date: Sun, 14 Dec 2025 18:16:15 +0530 Subject: [PATCH] fix: runtime NameError --- kernel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel.py b/kernel.py index f827897..ec2f33b 100644 --- a/kernel.py +++ b/kernel.py @@ -14,7 +14,7 @@ client = OpenAI(api_key=os.environ.get("OPENAI_API_KEY")) -def run_adb_command(command: List[str]): +def run_adb_command(command: list[str]): """Executes a shell command via ADB.""" result = subprocess.run([ADB_PATH] + command, capture_output=True, text=True) if result.stderr and "error" in result.stderr.lower():