mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
verifies required is a boolean
This commit is contained in:
parent
a2b1a3acbb
commit
1e06a9f48d
1 changed files with 8 additions and 2 deletions
|
@ -219,7 +219,10 @@ class DocCLI(CLI):
|
||||||
opt = doc['options'][o]
|
opt = doc['options'][o]
|
||||||
desc = CLI.tty_ify(" ".join(opt['description']))
|
desc = CLI.tty_ify(" ".join(opt['description']))
|
||||||
|
|
||||||
if opt.get('required', False):
|
required = opt.get('required', False)
|
||||||
|
if not isinstance(required, bool):
|
||||||
|
raise("Incorrect value for 'Required', a boolean is needed.: %s" % required)
|
||||||
|
if required:
|
||||||
s = o + "="
|
s = o + "="
|
||||||
else:
|
else:
|
||||||
s = o
|
s = o
|
||||||
|
@ -252,7 +255,10 @@ class DocCLI(CLI):
|
||||||
for o in sorted(doc['option_keys']):
|
for o in sorted(doc['option_keys']):
|
||||||
opt = doc['options'][o]
|
opt = doc['options'][o]
|
||||||
|
|
||||||
if opt.get('required', False):
|
required = opt.get('required', False)
|
||||||
|
if not isinstance(required, bool):
|
||||||
|
raise("Incorrect value for 'Required', a boolean is needed.: %s" % required)
|
||||||
|
if required:
|
||||||
opt_leadin = "="
|
opt_leadin = "="
|
||||||
else:
|
else:
|
||||||
opt_leadin = "-"
|
opt_leadin = "-"
|
||||||
|
|
Loading…
Reference in a new issue