Skip to content

Commit a33d96b

Browse files
authored
Rename variable 'status' to '_status' for clarity
1 parent 7c396bd commit a33d96b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xdist/dsession.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ def get_workers_status_line(
582582
# All workers collect the same number of items, so we grab
583583
# the total number of items from the first worker.
584584
first = status_and_items[0]
585-
status, tests_collected = first
585+
_status, tests_collected = first
586586
tests_noun = "item" if tests_collected == 1 else "items"
587587
return f"{total_workers} {workers_noun} [{tests_collected} {tests_noun}]"
588588
if WorkerStatus.CollectionDone in statuses:

0 commit comments

Comments
 (0)