From f66d296a23fd1a1b01d4aeee6c77fc11443e1084 Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Wed, 23 Oct 2024 18:01:13 +0200 Subject: [PATCH] fix linter error: jinja spacing --- roles/mgrote_users/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/mgrote_users/tasks/main.yml b/roles/mgrote_users/tasks/main.yml index 16015a1c..6a33a096 100644 --- a/roles/mgrote_users/tasks/main.yml +++ b/roles/mgrote_users/tasks/main.yml @@ -1,7 +1,7 @@ --- - name: Set groups as list ansible.builtin.set_fact: - groups_as_list: "{{ ((( item.groups ) | list) | sort) | unique }}" + groups_as_list: "{{ (((item.groups) | list) | sort) | unique }}" loop: "{{ users }}" when: item.groups is defined no_log: true