Skip to content

Commit 9d7dcae

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

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/xdist/workermanage.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,9 @@ def setup_nodes(
9696
self.config.hook.pytest_xdist_setupnodes(config=self.config, specs=self.specs)
9797
self.trace("setting up nodes")
9898
with ThreadPoolExecutor(max_workers=len(self.specs)) as executor:
99-
futs = [executor.submit(self.setup_node, spec, putevent) for spec in self.specs]
99+
futs = [
100+
executor.submit(self.setup_node, spec, putevent) for spec in self.specs
101+
]
100102
return [f.result() for f in futs]
101103

102104
def setup_node(

0 commit comments

Comments
 (0)