Skip to content

Commit 2445aec

Browse files
committed
process: Fix asyncio subprocess flag
1 parent 8037d10 commit 2445aec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dweam/utils/process.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def get_subprocess_flags() -> int:
2020
def get_asyncio_subprocess_flags() -> int:
2121
"""Get the appropriate asyncio subprocess creation flags based on build type"""
2222
if sys.platform == "win32" and not is_debug_build():
23-
return asyncio.subprocess.CREATE_NO_WINDOW
23+
return subprocess.CREATE_NO_WINDOW
2424
return 0
2525

2626
def patch_subprocess_popen():

0 commit comments

Comments
 (0)