Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Commit 714507b

Browse files
Update packages/jumpstarter-driver-android/jumpstarter_driver_android/driver/options.py
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 5a6a444 commit 714507b

File tree

1 file changed

+3
-2
lines changed
  • packages/jumpstarter-driver-android/jumpstarter_driver_android/driver

1 file changed

+3
-2
lines changed

packages/jumpstarter-driver-android/jumpstarter_driver_android/driver/options.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,15 @@ class AdbOptions(BaseModel):
88
Holds the options for the ADB server.
99
1010
Attributes:
11-
host (str): The host address for the ADB server. Default is
11+
adb_path (str): Path to the adb executable. Default is "adb".
12+
host (str): The host address for the ADB server. Default is "127.0.0.1".
13+
port (int): The port number for the ADB server. Default is 5037.
1214
"""
1315

1416
adb_path: str = Field(default="adb")
1517
host: str = Field(default="127.0.0.1")
1618
port: int = Field(default=5037)
1719

18-
1920
class EmulatorOptions(BaseModel):
2021
"""
2122
Pydantic model for Android Emulator CLI arguments.

0 commit comments

Comments
 (0)