fix: correct computer typing helper in docs

Replace the outdated `interface.type()` calls in the Python docs with
`interface.type_text()` to match the current Computer SDK API.
This commit is contained in:
Adam
2025-11-15 00:59:16 -05:00
parent 6bb9cb528d
commit e98f71dc57
4 changed files with 4 additions and 4 deletions

View File

@@ -40,7 +40,7 @@ try:
await computer.interface.right_click(300, 300)
await computer.interface.double_click(400, 400)
await computer.interface.type("Hello, World!")
await computer.interface.type_text("Hello, World!")
await computer.interface.press_key("enter")
await computer.interface.set_clipboard("Test clipboard")