diff --git a/plugins/module_utils/module.py b/plugins/module_utils/module.py index 3f3ee09..ebc20de 100644 --- a/plugins/module_utils/module.py +++ b/plugins/module_utils/module.py @@ -20,8 +20,6 @@ class AnsibleModule(object): name: ClassVar[str] #: The AnsibleModule for this Module module: basic.AnsibleModule - #: TODO - msg: str #: The result of this Module call. It always contains the changed key, so in any case an Module can report if it changed anything result: dict #: the specification of the arguments. Subclasses that are usable Modules must set this value. @@ -40,7 +38,6 @@ class AnsibleModule(object): specs.update(self._common_args) specs.update(self.module_spec) self.module = basic.AnsibleModule(**specs) - self.msg = "" self.tmpdir = pathlib.Path(self.module.tmpdir) def set(self, key: str, value):