1
0
Fork 0

argument_spec is now better documented

Dieser Commit ist enthalten in:
Sebastian Tobie 2023-04-21 00:14:19 +02:00
Ursprung 4470f06962
Commit 68df507cb1
1 geänderte Dateien mit 6 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -145,7 +145,12 @@ class AnsibleModule(object):
doc = ""
options = dict()
help: _sdict
for option, help in cls.module_spec["argument_spec"].items():
specs = dict()
if "argument_spec" in cls._common_args:
specs.update(cls._common_args["argument_spec"])
if "argument_spec" in cls.module_spec:
specs.update(cls.module_spec["argument_spec"])
for option, help in specs.items():
options[option] = dict(
type=help["type"],
)