mirror of
https://github.com/trycua/lume.git
synced 2026-02-18 04:10:03 -06:00
fix: typo in command executor class
This commit is contained in:
@@ -2,7 +2,7 @@ import asyncio
|
||||
import base64
|
||||
from typing import Any, Dict, List, Optional, Tuple
|
||||
|
||||
from ..utils.helpers import CommandExecuctor
|
||||
from ..utils.helpers import CommandExecutor
|
||||
from .base import (
|
||||
BaseAccessibilityHandler,
|
||||
BaseAutomationHandler,
|
||||
@@ -29,7 +29,7 @@ ANDROID_KEY_MAP = {
|
||||
"right": "22",
|
||||
}
|
||||
|
||||
adb_exec = CommandExecuctor("adb", "-s", "emulator-5554")
|
||||
adb_exec = CommandExecutor("adb", "-s", "emulator-5554")
|
||||
|
||||
|
||||
class AndroidAccessibilityHandler(BaseAccessibilityHandler):
|
||||
|
||||
@@ -48,7 +48,7 @@ def get_current_os() -> str:
|
||||
raise RuntimeError(f"Failed to determine current OS: {str(e)}")
|
||||
|
||||
|
||||
class CommandExecuctor:
|
||||
class CommandExecutor:
|
||||
def __init__(self, *base_cmd: str) -> None:
|
||||
"""Initialize with a base command.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user