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 334c279 commit 2d0df8eCopy full SHA for 2d0df8e
playwright/_impl/_transport.py
@@ -16,7 +16,6 @@
16
import io
17
import json
18
import os
19
-import subprocess
20
import sys
21
from abc import ABC, abstractmethod
22
from pathlib import Path
@@ -107,9 +106,6 @@ async def wait_until_stopped(self) -> None:
107
106
108
async def connect(self) -> None:
109
self._stopped_future: asyncio.Future = asyncio.Future()
110
- creationflags = 0
111
- if sys.platform == "win32":
112
- creationflags = subprocess.CREATE_NO_WINDOW
113
114
try:
115
# For pyinstaller
@@ -124,7 +120,6 @@ async def connect(self) -> None:
124
120
stdout=asyncio.subprocess.PIPE,
125
121
stderr=_get_stderr_fileno(),
126
122
limit=32768,
127
- creationflags=creationflags,
128
123
env=env,
129
)
130
except Exception as exc:
0 commit comments