Skip to content

Commit 9664721

Browse files
committed
run format.sh
1 parent 757e122 commit 9664721

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

py/selenium/webdriver/remote/webdriver.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -639,8 +639,8 @@ def get_cookies(self) -> List[dict]:
639639
return self.execute(Command.GET_ALL_COOKIES)["value"]
640640

641641
def get_cookie(self, name) -> Optional[Dict]:
642-
"""Get a single cookie by name. Raises ValueError if the name is empty or whitespace.
643-
Returns the cookie if found, None if not.
642+
"""Get a single cookie by name. Raises ValueError if the name is empty
643+
or whitespace. Returns the cookie if found, None if not.
644644
645645
:Usage:
646646
::
@@ -659,7 +659,8 @@ def get_cookie(self, name) -> Optional[Dict]:
659659
return None
660660

661661
def delete_cookie(self, name) -> None:
662-
"""Deletes a single cookie with the given name. Raises ValueError if the name is empty or whitespace.
662+
"""Deletes a single cookie with the given name. Raises ValueError if
663+
the name is empty or whitespace.
663664
664665
:Usage:
665666
::

0 commit comments

Comments
 (0)