Merge "use underscore for unused variable in loop"

changes/05/872005/3
Zuul 2 months ago committed by Gerrit Code Review
commit 0c8ce111ba

@ -149,13 +149,13 @@ def run_build():
with join_many(workers):
try:
for x in range(conf.threads):
for _ in range(conf.threads):
worker = WorkerThread(conf, build_queue)
worker.daemon = True
worker.start()
workers.append(worker)
for x in range(conf.push_threads):
for _ in range(conf.push_threads):
worker = WorkerThread(conf, push_queue)
worker.daemon = True
worker.start()

Loading…
Cancel
Save