Skip to content

Commit f5d6751

Browse files
henryiiipradyunsg
andauthored
Apply suggestions from code review
Co-authored-by: Pradyun Gedam <pradyunsg@gmail.com>
1 parent 4d1045d commit f5d6751

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/pyproject_hooks/_impl.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def quiet_subprocess_runner(
9595
) -> None:
9696
"""Call the subprocess while suppressing output.
9797
98-
This uses :func:`subprocess.run` with `PIPE` under the hood.
98+
This uses :func:`subprocess.run` with `stdout=PIPE, stderr=STDOUT` under the hood.
9999
"""
100100
env = os.environ.copy()
101101
if extra_environ:
@@ -108,7 +108,6 @@ def quiet_subprocess_runner(
108108
stdout=subprocess.PIPE,
109109
stderr=subprocess.STDOUT,
110110
check=True,
111-
text=True,
112111
)
113112

114113

0 commit comments

Comments
 (0)