|
|
@@ -71,7 +71,7 @@ class KDEConnect:
|
|
|
def run_kde_command(args: list[str]) -> str:
|
|
|
command: list[str] = ["kdeconnect-cli"]
|
|
|
command.extend(args)
|
|
|
- process: CompletedProcess = subprocess.run(command, capture_output=True)
|
|
|
+ process: subprocess.CompletedProcess = subprocess.run(command, capture_output=True)
|
|
|
|
|
|
subprocess_response = process.stdout.decode("utf-8")
|
|
|
logging.debug("Subprocess call : \n>> " + " ".join(command) + "\n" + subprocess_response)
|