Skip to content
Snippets Groups Projects
Verified Commit 71289c9e authored by Petr Špaček's avatar Petr Špaček
Browse files

fix flake8 nitpick

parent dd97e184
No related branches found
No related tags found
1 merge request!183fix leaking sockets
Pipeline #66484 passed
......@@ -85,7 +85,7 @@ def create_trust_anchor_files(ta_files, work_dir):
if ex.errno != errno.EEXIST:
raise
with open(full_path, "w") as ta_file:
ta_file.writelines('{0}\n'.format(l) for l in ta_lines)
ta_file.writelines('{0}\n'.format(line) for line in ta_lines)
return full_paths
......
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