Skip to content

Commit fbcb90b

Browse files
committed
[py] fix linter failures
1 parent b482f73 commit fbcb90b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

py/selenium/webdriver/remote/webdriver.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1134,11 +1134,12 @@ def set_user_verified(self, verified: bool) -> None:
11341134
self.execute(Command.SET_USER_VERIFIED, {"authenticatorId": self._authenticator_id, "isUserVerified": verified})
11351135

11361136
def get_downloadable_files(self) -> dict:
1137-
"""Retrieves the downloadable files as a map of file names and their corresponding URLs."""
1137+
"""Retrieves the downloadable files as a map of file names and their
1138+
corresponding URLs."""
11381139
return self.execute(Command.GET_DOWNLOADABLE_FILES)["value"]
11391140

11401141
def download_file(self, file_name: str) -> str:
1141-
"""Downloads a file with the specified file name
1142+
"""Downloads a file with the specified file name.
11421143
11431144
file_name: The name of the file to download.
11441145
"""

0 commit comments

Comments
 (0)