diff --git a/acme/acme/standalone_test.py b/acme/acme/standalone_test.py index a694a462a..6ec29dfa2 100644 --- a/acme/acme/standalone_test.py +++ b/acme/acme/standalone_test.py @@ -336,7 +336,7 @@ class TestSimpleTLSSNI01Server(unittest.TestCase): def test_it(self, mock_logger): max_attempts = 5 self.thread.start() - for attempt in range(max_attempts): + for _ in range(max_attempts): if mock_logger.info.called: # Get the port selection which was logged port = mock_logger.info.call_args[0][-1]