From 034d4cc90f5a729a213917acc5cadc51582a5734 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?I=C3=B1igo=20Moreno=20i=20Caireta?=
 <inigo.moreno@tecnalia.com>
Date: Tue, 27 Feb 2024 10:37:37 +0100
Subject: [PATCH] Pass yamllint

---
 ci-templates/python.yml | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/ci-templates/python.yml b/ci-templates/python.yml
index 4a593b6..2fb8dc8 100644
--- a/ci-templates/python.yml
+++ b/ci-templates/python.yml
@@ -1,11 +1,10 @@
-
 .flake8_template:
   stage: build
   before_script: ${PYTHON_VERSION} -m pip -q install flake8
-  script: 
-  - find . -type f -executable -exec awk ' /^#!.*python/{print FILENAME}  {nextfile}' {} + > /tmp/shebang_python_files
-  - find . -type f -name "*.py" > /tmp/extension_python_files
-  - sort /tmp/extension_python_files /tmp/shebang_python_files | uniq | xargs ${PYTHON_VERSION} -m flake8 --max-line-length 120 --statistics --show-source
+  script:
+    - find . -type f -executable -exec awk ' /^#!.*python/{print FILENAME}  {nextfile}' {} + > /tmp/shebang_python_files
+    - find . -type f -name "*.py" > /tmp/extension_python_files
+    - sort /tmp/extension_python_files /tmp/shebang_python_files | uniq | xargs ${PYTHON_VERSION} -m flake8 --max-line-length 120 --statistics --show-source
 
 .flake8_extended_template:
   extends: .flake8_template
-- 
GitLab