Commit 3121a7f3 by Richard C Isaacson

Bulk update of choices=BOOLEANS to type='bool'

parent f1301f6f
...@@ -337,11 +337,11 @@ def main(): ...@@ -337,11 +337,11 @@ def main():
container=dict(), container=dict(),
state=dict(choices=['present', 'absent', 'list'], default='present'), state=dict(choices=['present', 'absent', 'list'], default='present'),
meta=dict(type='dict', default=dict()), meta=dict(type='dict', default=dict()),
clear_meta=dict(choices=BOOLEANS, default=False, type='bool'), clear_meta=dict(default=False, type='bool'),
type=dict(choices=['container', 'meta'], default='container'), type=dict(choices=['container', 'meta'], default='container'),
ttl=dict(type='int'), ttl=dict(type='int'),
public=dict(choices=BOOLEANS, default=False, type='bool'), public=dict(default=False, type='bool'),
private=dict(choices=BOOLEANS, default=False, type='bool'), private=dict(default=False, type='bool'),
web_index=dict(), web_index=dict(),
web_error=dict() web_error=dict()
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment