Skip to content

Commit

Permalink
Lint and upgrade requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
tsterbak committed Jan 20, 2023
1 parent a72804f commit 3d4d8f2
Show file tree
Hide file tree
Showing 2 changed files with 189 additions and 164 deletions.
7 changes: 6 additions & 1 deletion openandroidinstaller/tooling.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@ def run_command(tool: str, command: List[str], bin_path: Path) -> CompletedProce
logger.info(f"Run command: {full_command}")
# run the command
with Popen(
full_command, stdout=PIPE, stderr=STDOUT, bufsize=1, universal_newlines=True, startupinfo=si
full_command,
stdout=PIPE,
stderr=STDOUT,
bufsize=1,
universal_newlines=True,
startupinfo=si,
) as p:
for line in p.stdout:
logger.info(line.strip())
Expand Down
Loading

0 comments on commit 3d4d8f2

Please sign in to comment.