Drop else condition in the container_skel_load loop

This cycle does contain `break` statement, thus there is no reason
to have `for/else` statement since `else` is always executed.

Change-Id: I82275f208b6674ac9b528d01b738748965bfe46e
This commit is contained in:
Dmitriy Rabotyagov 2023-03-27 17:32:04 +02:00
parent 72cdf3fd27
commit 90fdc6322f

View File

@ -733,7 +733,7 @@ def container_skel_load(container_skel, inventory, config):
inventory,
value.get('properties', {})
)
else:
cidr_networks = config.get('cidr_networks')
provider_queues = {}
for net_name in cidr_networks: