[ansible-lint] Unignore jinja[spacing]

Fix in one place, ignore in the other.

Only 4 warnings now.

Change-Id: I3c745914e2ffdcdd7e70d9e06ae1df05dc120f79
This commit is contained in:
Radosław Piliszek 2022-09-10 09:08:37 +00:00
parent 0d2fb5e71d
commit aa922ad2f8
3 changed files with 4 additions and 4 deletions

View File

@ -4,4 +4,3 @@ skip_list:
warn_list:
- no-changed-when
- experimental # all rules tagged as experimental
- jinja[spacing] # Jinja2 spacing could be improved

View File

@ -15,8 +15,9 @@
- name: Get physical network name
set_fact:
physnet: "{{ source_interface | source_link_to_physnet_name(
inventory_hostname=ironic_hypervisor) }}"
physnet: >-
{{ source_interface |
source_link_to_physnet_name(inventory_hostname=ironic_hypervisor) }}
- name: Get bridge name
set_fact:

View File

@ -22,7 +22,7 @@
dest: "{{ wait_for_resources_python_requirements_path }}"
mode: preserve
- name: Install dependencies in supplied venv
- name: Install dependencies in supplied venv # noqa jinja[spacing]
pip:
requirements: "{{ wait_for_resources_python_requirements_path }}"
extra_args: >-