diff --git a/uwsgi-python/tasks/app.yml b/uwsgi-python/tasks/app.yml
index 9defe2f58a53848f212ab09a7d441a8c83a78e43..976008611309ea4ead2d06291a3fb336379fe204 100644
--- a/uwsgi-python/tasks/app.yml
+++ b/uwsgi-python/tasks/app.yml
@@ -191,6 +191,7 @@
   notify:
     - "restart uwsgi instance {{ app.instance }}"
   when:
+    # yamllint disable-line rule:line-length
     - (app_deploy_key is not defined) or (not app_deploy_key|string != '')  # noqa 602
     - (app_git_pip is not defined) or (not app_git_pip)
   register: git
@@ -239,7 +240,7 @@
   file:
     path: "{{ item }}"
     state: directory
-    mode: 0775
+    mode: "0775"
     owner: "{{ app_user }}"
   loop:
     - "{{ app_path }}/.bundle"
diff --git a/uwsgi-python/tasks/apps/gl-rt-bridge.yml b/uwsgi-python/tasks/apps/gl-rt-bridge.yml
index 3406ad95f6d03c64fa5d7a67e5d9a86c2a9a306c..5987360a7234cf10750661907542b83b64c8e1f7 100644
--- a/uwsgi-python/tasks/apps/gl-rt-bridge.yml
+++ b/uwsgi-python/tasks/apps/gl-rt-bridge.yml
@@ -5,4 +5,4 @@
     name: "{{ app_home }}/RT_Client.{{ gl_rt_bridge.rt_user }}.cookie"
     state: touch
     owner: "{{ app_user }}"
-    mode: 0600
+    mode: "0600"