Skip to content

Commit

Permalink
add trailing comma
Browse files Browse the repository at this point in the history
This prevent forgetting the comma when adding more items to the list

Co-authored-by: Andrew Klychkov <[email protected]>
  • Loading branch information
laurent-indermuehle and Andersson007 authored Oct 5, 2023
1 parent b1aacc6 commit 30c5248
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/mysql_role.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 30c5248

Please sign in to comment.