diff --git a/changelogs/fragments/69465-remove-fixme-comment.yaml b/changelogs/fragments/69465-remove-fixme-comment.yaml new file mode 100644 index 00000000000..effc35c8372 --- /dev/null +++ b/changelogs/fragments/69465-remove-fixme-comment.yaml @@ -0,0 +1,2 @@ +bugfixes: +- objects - Remove FIXME comment because no fix is needed. diff --git a/lib/ansible/parsing/yaml/objects.py b/lib/ansible/parsing/yaml/objects.py index 923dc68d6e4..ef11e6740b4 100644 --- a/lib/ansible/parsing/yaml/objects.py +++ b/lib/ansible/parsing/yaml/objects.py @@ -113,7 +113,6 @@ class AnsibleVaultEncryptedUnicode(yaml.YAMLObject, AnsibleBaseYAMLObject): @property def data(self): if not self.vault: - # FIXME: raise exception? return self._ciphertext return to_text(self.vault.decrypt(self._ciphertext))