fix: typo in command executor class

This commit is contained in:
synacktra.work@gmail.com
2025-12-02 18:23:06 +05:30
parent 138e615bbd
commit 276ad0609b
2 changed files with 3 additions and 3 deletions

View File

@@ -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):

View File

@@ -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.