From 232ecf55946be57f514b35d67917e5bd2d1a1eb0 Mon Sep 17 00:00:00 2001 From: Alessandro Mautone Date: Fri, 5 Jan 2024 15:39:10 +0100 Subject: [PATCH] Improve retry mechanism --- comands/commands_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comands/commands_utils.py b/comands/commands_utils.py index e56d565..5926a7e 100644 --- a/comands/commands_utils.py +++ b/comands/commands_utils.py @@ -5,7 +5,7 @@ def execute_adb_command_getting_result(adb_command, device_id): command_to_execute = f"{get_adb()} -s {device_id} {adb_command}" - execute_command_getting_result(command_to_execute) + return execute_command_getting_result(command_to_execute) def execute_command_getting_result(command):