From ed994c37e8184f7537c8903daca488b11f306f5b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 1 Sep 2022 13:43:30 +0000 Subject: [PATCH] chore: auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/ansiblelint/rules/deprecated_module.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ansiblelint/rules/deprecated_module.md b/src/ansiblelint/rules/deprecated_module.md index 4277b1f2f9e..bcb7ed3a2ce 100644 --- a/src/ansiblelint/rules/deprecated_module.md +++ b/src/ansiblelint/rules/deprecated_module.md @@ -15,7 +15,7 @@ Refer to the [Ansible module index](https://docs.ansible.com/ansible/latest/coll tasks: - name: Configure VLAN ID ansible.netcommon.net_vlan: # <-- This module is deprecated. - vlan_id: 20 + vlan_id: 20 ``` ## Correct Code @@ -27,6 +27,6 @@ Refer to the [Ansible module index](https://docs.ansible.com/ansible/latest/coll tasks: - name: Configure VLAN ID dellemc.enterprise_sonic.sonic_vlans: # <-- Use a platform specific module. - config: - - vlan_id: 20 -``` \ No newline at end of file + config: + - vlan_id: 20 +```