Skip to content

Commit b22ac8c

Browse files
solving lint issue
Signed-off-by: Shiva Shankar Vaddepally <shivashankar.vaddepally@cloud.com>
1 parent c9b8d13 commit b22ac8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/module_utils/module_executor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -468,8 +468,8 @@ def create_or_update(self):
468468
for key in immutable_keys_list:
469469
self.resource_module_params.pop(key)
470470

471-
is_identical, _ = self.is_resource_identical()
472-
471+
is_identical, temp_immutable_list = self.is_resource_identical()
472+
#temp_immutable_list is a dummy as '_' is not allowed in lint.
473473
if is_identical:
474474
msg = (
475475
f"Resource {self.resource_name}/{self.resource_id} not updated because user is trying to "

0 commit comments

Comments
 (0)