Skip to content

Commit 9f33617

Browse files
committed
applied format.sh
1 parent 1727e34 commit 9f33617

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

py/selenium/webdriver/chromium/options.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def __init__(self) -> None:
3939
@property
4040
def binary_location(self) -> str:
4141
"""Returns:
42-
The location of the binary, otherwise an empty string.
42+
The location of the binary, otherwise an empty string.
4343
"""
4444
return self._binary_location
4545

@@ -57,7 +57,7 @@ def binary_location(self, value: str) -> None:
5757
@property
5858
def debugger_address(self) -> Optional[str]:
5959
"""Returns:
60-
The address of the remote devtools instance.
60+
The address of the remote devtools instance.
6161
"""
6262
return self._debugger_address
6363

@@ -76,7 +76,7 @@ def debugger_address(self, value: str) -> None:
7676
@property
7777
def extensions(self) -> list[str]:
7878
"""Returns:
79-
A list of encoded extensions that will be loaded.
79+
A list of encoded extensions that will be loaded.
8080
"""
8181

8282
def _decode(file_data: BinaryIO) -> str:
@@ -123,7 +123,7 @@ def add_encoded_extension(self, extension: str) -> None:
123123
@property
124124
def experimental_options(self) -> dict:
125125
"""Returns:
126-
A dictionary of experimental options for chromium.
126+
A dictionary of experimental options for chromium.
127127
"""
128128
return self._experimental_options
129129

@@ -139,8 +139,8 @@ def add_experimental_option(self, name: str, value: Union[str, int, dict, list[s
139139
@property
140140
def enable_webextensions(self) -> bool:
141141
"""Returns:
142-
Whether webextension support is enabled for Chromium-based browsers.
143-
True if webextension support is enabled, False otherwise.
142+
Whether webextension support is enabled for Chromium-based browsers.
143+
True if webextension support is enabled, False otherwise.
144144
"""
145145
return self._enable_webextensions
146146

py/selenium/webdriver/edge/options.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def __init__(self) -> None:
3030
@property
3131
def use_webview(self) -> bool:
3232
"""Returns:
33-
Whether WebView2 is enabled for Edge browser.
33+
Whether WebView2 is enabled for Edge browser.
3434
"""
3535
return self._use_webview
3636

@@ -58,6 +58,6 @@ def to_capabilities(self) -> dict:
5858
@property
5959
def default_capabilities(self) -> dict:
6060
"""Returns:
61-
The default capabilities for Edge browser.
61+
The default capabilities for Edge browser.
6262
"""
6363
return DesiredCapabilities.EDGE.copy()

py/selenium/webdriver/edge/service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def __init__(
6262
@property
6363
def service_args(self) -> Sequence[str]:
6464
"""Returns:
65-
The sequence of service arguments.
65+
The sequence of service arguments.
6666
"""
6767
return self._service_args
6868

0 commit comments

Comments
 (0)