From a888e94962e698822896419239799d20b90754c6 Mon Sep 17 00:00:00 2001 From: hyugogirubato <65763543+hyugogirubato@users.noreply.github.com> Date: Sat, 14 Jun 2025 11:59:59 +0200 Subject: [PATCH] replace move to popen shell --- keydive/adb/remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keydive/adb/remote.py b/keydive/adb/remote.py index 5ddb98c..582a3d4 100644 --- a/keydive/adb/remote.py +++ b/keydive/adb/remote.py @@ -2,7 +2,7 @@ import logging import re import shutil -from subprocess import run +from subprocess import Popen, PIPE from typing import Optional, List, Tuple from pathlib import Path