Skip to content

Commit 95720d1

Browse files
committed
fmt
1 parent 52385ea commit 95720d1

File tree

1 file changed

+1
-3
lines changed
  • py/selenium/webdriver/support

1 file changed

+1
-3
lines changed

py/selenium/webdriver/support/wait.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,7 @@ def __init__(
9393
def __repr__(self) -> str:
9494
return f'<{type(self).__module__}.{type(self).__name__} (session="{self._driver.session_id}")>'
9595

96-
def until(
97-
self, method: Callable[[D], Union[Literal[False], T]], message: Union[str, Callable[[], str]] = ""
98-
) -> T:
96+
def until(self, method: Callable[[D], Union[Literal[False], T]], message: Union[str, Callable[[], str]] = "") -> T:
9997
"""Wait until the method returns a value that is not False.
10098
10199
Calls the method provided with the driver as an argument until the

0 commit comments

Comments
 (0)