fixed wrong kwarg

This commit is contained in:
Dillon DuPont
2025-05-15 15:52:57 -04:00
parent 56438440e6
commit c0d46a56b8
@@ -195,7 +195,7 @@ class Diorama:
async def press_key(self, key):
await self._send_cmd("press_key", {"key": key})
async def hotkey(self, *keys):
async def hotkey(self, keys):
await self._send_cmd("hotkey", {"keys": list(keys)})
async def get_screen_size(self) -> dict[str, int]: