Skip to content

Commit

Permalink
[py]: Fix typing.Union t ypes for log_path
Browse files Browse the repository at this point in the history
  • Loading branch information
symonk committed Oct 3, 2022
1 parent fcb8349 commit 7ead8b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/selenium/webdriver/chromium/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def __init__(
executable_path: str,
port: int = 0,
service_args: typing.Optional[List[str]] = None,
log_path: typing.Optional[typing.Any[str, int]] = None,
log_path: typing.Optional[typing.Union[str, int]] = None,
env: typing.Optional[typing.Dict[typing.Any, typing.Any]] = None,
start_error_message: str = "",
):
Expand Down

0 comments on commit 7ead8b8

Please sign in to comment.