We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8953ce commit 8b25a45Copy full SHA for 8b25a45
py/selenium/webdriver/common/service.py
@@ -198,7 +198,7 @@ def _start_process(self, path: str) -> None:
198
"""
199
cmd = [path]
200
cmd.extend(self.command_line_args())
201
- close_file_descriptors = self.popen_kw.pop("close_fds", None) or system() != "Windows"
+ close_file_descriptors = self.popen_kw.pop("close_fds", system() != "Windows")
202
try:
203
self.process = subprocess.Popen(
204
cmd,
0 commit comments