Skip to content

Commit 137185b

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent ad24953 commit 137185b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/auditwheel/repair.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,9 @@ def _inner_replace(
136136
if n in soname_map:
137137
replacements.append((n, soname_map[n][0]))
138138
if replacements:
139-
replace_works[path] = pool.submit(patcher.replace_needed, path, *replacements)
139+
replace_works[path] = pool.submit(
140+
patcher.replace_needed, path, *replacements
141+
)
140142

141143
assert all(f.exception() is None for f in as_completed(replace_works.values()))
142144
if update_tags:

0 commit comments

Comments
 (0)