Fix hotkeys on windows

This commit is contained in:
Dillon DuPont
2025-06-17 12:37:11 -04:00
parent 91ebb81d73
commit 7cfe63e50b
2 changed files with 12 additions and 1 deletions
@@ -277,7 +277,7 @@ class WindowsAutomationHandler(BaseAutomationHandler):
except Exception as e:
return {"success": False, "error": str(e)}
async def hotkey(self, *keys: str) -> Dict[str, Any]:
async def hotkey(self, keys: str) -> Dict[str, Any]:
if not pyautogui:
return {"success": False, "error": "pyautogui not available"}