Skip to content

Commit

Permalink
Ignore type of subprocess.stdout (for now)
Browse files Browse the repository at this point in the history
  • Loading branch information
lorencarvalho committed Apr 15, 2020
1 parent 7a7e553 commit ac55b5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shiv/pip.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def install(args: List[str]) -> None:
universal_newlines=True,
)

for output in process.stdout:
for output in process.stdout: # type: ignore
if output:
click.echo(output.rstrip())

Expand Down

0 comments on commit ac55b5b

Please sign in to comment.