We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5134001 + 137185b commit c0908deCopy full SHA for c0908de
src/auditwheel/repair.py
@@ -133,7 +133,9 @@ def _inner_replace(
133
if n in soname_map:
134
replacements.append((n, soname_map[n][0]))
135
if replacements:
136
- replace_works[path] = pool.submit(patcher.replace_needed, path, *replacements)
+ replace_works[path] = pool.submit(
137
+ patcher.replace_needed, path, *replacements
138
+ )
139
140
assert all(f.exception() is None for f in as_completed(replace_works.values()))
141
if update_tags:
0 commit comments