We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8037d10 commit 2445aecCopy full SHA for 2445aec
dweam/utils/process.py
@@ -20,7 +20,7 @@ def get_subprocess_flags() -> int:
20
def get_asyncio_subprocess_flags() -> int:
21
"""Get the appropriate asyncio subprocess creation flags based on build type"""
22
if sys.platform == "win32" and not is_debug_build():
23
- return asyncio.subprocess.CREATE_NO_WINDOW
+ return subprocess.CREATE_NO_WINDOW
24
return 0
25
26
def patch_subprocess_popen():
0 commit comments