Skip to content

Commit 3d4d8f2

Browse files
committed
Lint and upgrade requirements
1 parent a72804f commit 3d4d8f2

File tree

2 files changed

+189
-164
lines changed

2 files changed

+189
-164
lines changed

openandroidinstaller/tooling.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,12 @@ def run_command(tool: str, command: List[str], bin_path: Path) -> CompletedProce
4848
logger.info(f"Run command: {full_command}")
4949
# run the command
5050
with Popen(
51-
full_command, stdout=PIPE, stderr=STDOUT, bufsize=1, universal_newlines=True, startupinfo=si
51+
full_command,
52+
stdout=PIPE,
53+
stderr=STDOUT,
54+
bufsize=1,
55+
universal_newlines=True,
56+
startupinfo=si,
5257
) as p:
5358
for line in p.stdout:
5459
logger.info(line.strip())

0 commit comments

Comments
 (0)