mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #6427 from risaacson/migrate_booleans_bool_rax_files_objects
Bulk update of choices=BOOLEANS to type='bool'
This commit is contained in:
commit
d0795a8336
1 changed files with 2 additions and 2 deletions
|
@ -572,8 +572,8 @@ def main():
|
||||||
method=dict(default='get', choices=['put', 'get', 'delete']),
|
method=dict(default='get', choices=['put', 'get', 'delete']),
|
||||||
type=dict(default='file', choices=['file', 'meta']),
|
type=dict(default='file', choices=['file', 'meta']),
|
||||||
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'),
|
||||||
structure=dict(choices=BOOLEANS, default=True, type='bool'),
|
structure=dict(default=True, type='bool'),
|
||||||
expires=dict(type='int'),
|
expires=dict(type='int'),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue