We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2953a24 commit 8cecef3Copy full SHA for 8cecef3
android_world/env/adb_utils.py
@@ -503,7 +503,7 @@ def _split_words_and_newlines(text: str) -> Iterable[str]:
503
if word:
504
yield word
505
if j < len(words) - 1:
506
- yield '%s'
+ yield ' '
507
if i < len(lines) - 1:
508
yield '\n'
509
@@ -532,7 +532,7 @@ def type_text(
532
logging.info('Found \\n, pressing enter button.')
533
press_enter_button(env)
534
continue
535
- formatted = _adb_text_format(word)
+ formatted = word
536
logging.info('Attempting to type word: %r', formatted)
537
response = env.execute_adb_call(
538
adb_pb2.AdbRequest(
0 commit comments