Skip to content

Commit dd19cff

Browse files
committed
remove duplicated args
1 parent 09e0c59 commit dd19cff

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

appium/webdriver/client_config.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@
1414

1515

1616
class AppiumClientConfig(ClientConfig):
17+
"""ClientConfig class for Appium Python client."""
18+
1719
def __init__(self, remote_server_addr: str, *args, **kwargs):
20+
"""
21+
TODO: add description
22+
"""
1823
self._direct_connection = kwargs.pop('direct_connection', False)
1924
super().__init__(remote_server_addr, *args, **kwargs)
2025

appium/webdriver/webdriver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ class WebDriver(
204204
):
205205
def __init__( # noqa: PLR0913
206206
self,
207-
command_executor: Union[str, AppiumConnection] = 'http://127.0.0.1:4723',
207+
command_executor: Union[str, AppiumConnection] = 'http://127.0.0.1:4444',
208208
extensions: Optional[List['WebDriver']] = None,
209209
options: Union[AppiumOptions, List[AppiumOptions], None] = None,
210210
client_config: Optional[AppiumClientConfig] = None,

0 commit comments

Comments
 (0)