Skip to content

Commit 9d06c7b

Browse files
author
Shiva Shankar Vaddepally
committed
removing help param
Signed-off-by: Shiva Shankar Vaddepally <shivashankar.vaddepally@cloud.com>
1 parent 7765e26 commit 9d06c7b

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

plugins/module_utils/module_executor.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,6 @@ def __init__(self, resource_name, supports_check_mode=True):
8282
type="str",
8383
choices=["yes", "no"],
8484
default="no",
85-
help=(
86-
"If set to `true`, the module will remove non-updatable attributes from the module params "
87-
"and update the resource. If set to `false`, the module will return an error if non-updatable "
88-
"attributes are present in the module params."
89-
),
9085
),
9186
)
9287
argument_spec.update(module_state_argument)
@@ -569,7 +564,7 @@ def create_or_update(self):
569564
if not ok:
570565
self.return_failure(err)
571566
else:
572-
# in case user wants to remove non-updatable params, we will remove them from the module_params
567+
# in case user wants to remove non-updatable params, we will remove them from the module_params
573568
for key in immutable_keys_list:
574569
self.resource_module_params.pop(key)
575570

0 commit comments

Comments
 (0)