From 30c52485bc12e13641ec0a72313b9531c5057bcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurent=20Inderm=C3=BChle?= Date: Thu, 5 Oct 2023 10:29:52 +0200 Subject: [PATCH] add trailing comma This prevent forgetting the comma when adding more items to the list Co-authored-by: Andrew Klychkov --- plugins/modules/mysql_role.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/mysql_role.py b/plugins/modules/mysql_role.py index 4fa59a3..68bafae 100644 --- a/plugins/modules/mysql_role.py +++ b/plugins/modules/mysql_role.py @@ -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,