diff --git a/.coverage b/.coverage new file mode 100644 index 0000000..fe0ceea Binary files /dev/null and b/.coverage differ diff --git a/adb_client.py b/adb_client.py index e96548e..54b6652 100644 --- a/adb_client.py +++ b/adb_client.py @@ -651,7 +651,7 @@ def send_keyevent_input(self, keycode: KeyCodes, long_press: bool=False) -> str: """ command = f'input keyevent {keycode.name}' if long_press: - command += '--longpress' + command += ' --longpress' return self.execute_shell_command(command)