Skip to content

Commit 86f7b57

Browse files
committed
[py] Making linter happy
1 parent 7c7790d commit 86f7b57

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

py/selenium/webdriver/common/action_chains.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
"""The ActionChains implementation."""
1919
from __future__ import annotations
2020

21-
import warnings
2221
from typing import TYPE_CHECKING
2322
from typing import List
2423
from typing import Optional

py/selenium/webdriver/common/service.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,5 +218,7 @@ def _start_process(self, path: str) -> None:
218218
raise
219219
except OSError as err:
220220
if err.errno == errno.EACCES:
221-
raise WebDriverException(f"'{os.path.basename(self._path)}' executable may have wrong permissions.") from err
221+
raise WebDriverException(
222+
f"'{os.path.basename(self._path)}' executable may have wrong permissions."
223+
) from err
222224
raise

0 commit comments

Comments
 (0)