add trailing comma

This prevent forgetting the comma when adding more items to the list

Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru>
This commit is contained in:
Laurent Indermühle 2023-10-05 10:29:52 +02:00 committed by GitHub
parent b1aacc6aeb
commit 30c52485bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -968,7 +968,7 @@ def main():
check_implicit_admin=dict(type='bool', default=False),
set_default_role_all=dict(type='bool', default=True),
members_must_exist=dict(type='bool', default=True),
column_case_sensitive=dict(type='bool', default=False)
column_case_sensitive=dict(type='bool', default=False),
)
module = AnsibleModule(
argument_spec=argument_spec,