Fix typing (#7083)

Co-authored-by: openhands <openhands@all-hands.dev>
This commit is contained in:
Rohit Malhotra
2025-03-03 15:41:11 -05:00
committed by GitHub
parent 4e4f4d64f8
commit 5ffb1ef704
11 changed files with 31 additions and 25 deletions

View File

@@ -1,5 +1,5 @@
import os
from typing import Callable, Optional
from typing import Callable
from urllib.parse import urlparse
import requests
@@ -42,7 +42,7 @@ class RemoteRuntime(ActionExecutionClient):
sid: str = 'default',
plugins: list[PluginRequirement] | None = None,
env_vars: dict[str, str] | None = None,
status_callback: Optional[Callable] = None,
status_callback: Callable | None = None,
attach_to_existing: bool = False,
headless_mode: bool = True,
github_user_id: str | None = None,