Skip to content

Commit 3f337bb

Browse files
[pre-commit.ci lite] apply automatic fixes
1 parent 73f87e8 commit 3f337bb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/pytest_run_parallel/plugin.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,7 @@ def pytest_itemcollected(item):
172172
skipped_functions = [
173173
x.split(".") for x in item.config.getini("thread_unsafe_functions")
174174
]
175-
skipped_functions = frozenset((".".join(x[:-1]), x[-1]) for x in
176-
skipped_functions)
175+
skipped_functions = frozenset((".".join(x[:-1]), x[-1]) for x in skipped_functions)
177176

178177
if n_workers > 1:
179178
thread_unsafe, thread_unsafe_reason = identify_thread_unsafe_nodes(

0 commit comments

Comments
 (0)