From 78e870712aab18594b029a82827e9fca587694a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Harald=20Jens=C3=A5s?= Date: Thu, 20 May 2021 23:49:15 +0200 Subject: [PATCH] Replace unused var 'net' with _ Replace the unused variable 'net' with _. Change-Id: I9e0ffac2d827feeb5e306d79e8ebdded1c350909 --- tools/process-templates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/process-templates.py b/tools/process-templates.py index fb7ab5efac..013cac3cdd 100755 --- a/tools/process-templates.py +++ b/tools/process-templates.py @@ -160,7 +160,7 @@ def process_templates(template_path, role_data_path, output_dir, # Set internal network index key for each network, network resources # are created with a tag tripleo_net_idx - for idx, net in enumerate(network_data): + for idx, _ in enumerate(network_data): network_data[idx].update({'idx': idx}) j2_excludes = {}