Skip to content

Commit 1164555

Browse files
authored
[py] Fix type error in mypy (#13482)
Fix type error in mypy
1 parent a3b1124 commit 1164555

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/selenium/webdriver/common/options.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ def arguments(self):
418418
""":Returns: A list of arguments needed for the browser."""
419419
return self._arguments
420420

421-
def add_argument(self, argument):
421+
def add_argument(self, argument) -> None:
422422
"""Adds an argument to the list.
423423
424424
:Args:

0 commit comments

Comments
 (0)