Replace unused var 'net' with _

Replace the unused variable 'net' with _.

Change-Id: I9e0ffac2d827feeb5e306d79e8ebdded1c350909
This commit is contained in:
Harald Jensås 2021-05-20 23:49:15 +02:00
parent 948f1e97a6
commit 78e870712a
1 changed files with 1 additions and 1 deletions

View File

@ -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 = {}