From a8d178ad6bae4d78607b188c0cd11a12c30cd5cb Mon Sep 17 00:00:00 2001 From: Jose Date: Fri, 26 Dec 2025 08:38:02 +0100 Subject: [PATCH] =?UTF-8?q?refactor=20=E2=99=BB=EF=B8=8F:=20Remove=20redun?= =?UTF-8?q?dant=20variable=20from=20debug=20message?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Refactored code by removing an unnecessary variable that was being used in a debug message, simplifying the logic and improving readability. --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index 59070ba..011d5e7 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -55,7 +55,7 @@ - name: Display wol_enabled values for all items ansible.builtin.debug: - msg: "{{ item }}: {{ item.stdout }}" + msg: "{{ item.stdout }}" loop: "{{ wol_enabled.results }}"