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():