We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfd881a commit f504648Copy full SHA for f504648
py/selenium/webdriver/webkitgtk/service.py
@@ -42,7 +42,7 @@ def __init__(
42
**kwargs,
43
) -> None:
44
self.service_args = service_args or []
45
- log_output = open(log_output, "wb")
+ log_output = open(log_output, "wb") if log_output else None
46
super().__init__(
47
executable_path=executable_path,
48
port=port,
0 commit comments