Skip to content

Commit

Permalink
[py] Fix type error in mypy (#13482)
Browse files Browse the repository at this point in the history
Fix type error in mypy
  • Loading branch information
take0x committed Jan 22, 2024
1 parent a3b1124 commit 1164555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/selenium/webdriver/common/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ def arguments(self):
""":Returns: A list of arguments needed for the browser."""
return self._arguments

def add_argument(self, argument):
def add_argument(self, argument) -> None:
"""Adds an argument to the list.
:Args:
Expand Down

0 comments on commit 1164555

Please sign in to comment.