From 89d20a5f89bee184348396246698793dcab6826c Mon Sep 17 00:00:00 2001 From: Dave Shawley Date: Mon, 10 May 2021 06:45:19 -0400 Subject: [PATCH] Remove unused variable in test. --- tests/test_processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_processor.py b/tests/test_processor.py index fa0b1a8..ab69c5e 100644 --- a/tests/test_processor.py +++ b/tests/test_processor.py @@ -378,7 +378,7 @@ class ConnectorTests(ProcessorTestCase): # then overflow it a bunch of times overflow_count = self.connector._enqueue_log_guard.threshold * 5 - for value in range(overflow_count): + for _ in range(overflow_count): self.connector.incr('counter') self.assertLess(self.connector.logger.warning.call_count, overflow_count)