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 cc5579c commit ca742b0Copy full SHA for ca742b0
playwright/_impl/_transport.py
@@ -107,9 +107,8 @@ async def wait_until_stopped(self) -> None:
107
108
async def connect(self) -> None:
109
self._stopped_future: asyncio.Future = asyncio.Future()
110
- # Hide the command-line window on Windows when using Pythonw.exe
111
creationflags = 0
112
- if sys.platform == "win32" and sys.stdout is None:
+ if sys.platform == "win32":
113
creationflags = subprocess.CREATE_NO_WINDOW
114
115
try:
0 commit comments