fixed an issue with choices in lists

Dieser Commit ist enthalten in:
Sebastian Tobie 2025-03-17 21:11:22 +01:00
Ursprung 328e58c439
Commit d82a902043

Datei anzeigen

@ -124,9 +124,8 @@ class Types(metaclass=meta):
f"helptext of option {name} is unset."
" Ansible requires suboptions to have an documentation"
)
elif elements["type"] == "list":
if "choices" in elements:
option["choices"] = elements["choices"]
elif "choices" in elements:
option["choices"] = elements["choices"]
if default is not None:
option["default"] = default
if help is not None and isinstance(help, str):