MINOR: Replace unused variable with underscore (#11037)

Reviewers: Chia-Ping Tsai <chia7712@gmail.com>
This commit is contained in:
CHUN-HAO TANG 2021-07-17 16:36:52 +08:00 committed by GitHub
parent a24dbba1e5
commit 98bd590718
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ class PluggableConsumerTest(VerifiableConsumerTest):
"""
consumer = self.setup_consumer(self.TOPIC)
for num_started, node in enumerate(consumer.nodes, 1):
for _, node in enumerate(consumer.nodes, 1):
consumer.start_node(node)
self.logger.debug("Waiting for %d nodes to start" % len(consumer.nodes))