diff --git a/kolla/image/build.py b/kolla/image/build.py index 6377ebe9d2..7306e5fdc1 100644 --- a/kolla/image/build.py +++ b/kolla/image/build.py @@ -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()