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.
1 parent ad24953 commit 137185bCopy full SHA for 137185b
src/auditwheel/repair.py
@@ -136,7 +136,9 @@ def _inner_replace(
136
if n in soname_map:
137
replacements.append((n, soname_map[n][0]))
138
if replacements:
139
- replace_works[path] = pool.submit(patcher.replace_needed, path, *replacements)
+ replace_works[path] = pool.submit(
140
+ patcher.replace_needed, path, *replacements
141
+ )
142
143
assert all(f.exception() is None for f in as_completed(replace_works.values()))
144
if update_tags:
0 commit comments