From 419066fa60b2d18e768c0c572951bbf048c5af6f Mon Sep 17 00:00:00 2001 From: anushadasari Date: Thu, 3 Oct 2019 00:37:07 +0530 Subject: [PATCH] Refactor function to reduce Cognitive Complexity Issue-ID: VVP-314 Change-Id: I0843dde3cc01ef2efbb08a282b93c5e3414a1cd2 Signed-off-by: anushadasari --- ice_validator/tests/utils/vm_types.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ice_validator/tests/utils/vm_types.py b/ice_validator/tests/utils/vm_types.py index 7570581..56d824b 100644 --- a/ice_validator/tests/utils/vm_types.py +++ b/ice_validator/tests/utils/vm_types.py @@ -63,9 +63,7 @@ def get_vm_types_for_resource(resource): vm_types = [] for k2, v2 in resource["properties"].items(): - if k2 not in key_values: - continue - if "get_param" not in v2: + if any([k2 not in key_values, "get_param" not in v2]): continue formats = [v for v in key_value_formats if v[0] == k2] for v3 in formats: -- 2.16.6