fix: increase wait time in search_pc function for improved reliability

This commit is contained in:
Showdown76 2025-05-19 20:33:54 +02:00
parent e5b3ea8b57
commit 7f5296b2ef

View File

@ -109,7 +109,7 @@ def wait(duration: float) -> None:
def search_pc(query: str) -> None:
"""Presses the Windows key."""
pyautogui.hotkey('win')
wait(2)
wait(4)
press_keyboard(KeyboardInput(text=query))
def reprompt(nextsteps: str, processor) -> None: