Skip to content
Snippets Groups Projects
Commit dc3fa8a7 authored by Simon McVittie's avatar Simon McVittie
Browse files

tests/relocatable-install.py: Silence a mypy warning

parent a01eb723
No related branches found
No related tags found
No related merge requests found
......@@ -122,8 +122,10 @@ def check_dependencies(test, relocatable_install, path, is_wrapper=False):
stdout=subprocess.PIPE,
universal_newlines=True,
)
stdout = subproc.stdout
assert stdout is not None # for mypy
for line in subproc.stdout:
for line in stdout:
line = line.strip()
if (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment