From af9fabe0a2a4815dd797a912df22b21d2a629482 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 28 Jan 2018 07:27:40 -0500 Subject: Remove two unused names --- tests/test_concurrency.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_concurrency.py b/tests/test_concurrency.py index f7ebf53..7100604 100644 --- a/tests/test_concurrency.py +++ b/tests/test_concurrency.py @@ -525,11 +525,11 @@ def test_thread_safe_save_data(tmpdir): # results right after stopping coverage collection with the threads # still running. duration = 0.01 - for i in range(3): + for _ in range(3): cov = coverage.coverage() cov.start() - threads = [threading.Thread(target=random_load) for i in range(10)] + threads = [threading.Thread(target=random_load) for _ in range(10)] should_run[0] = True for t in threads: t.start() -- cgit v1.2.1