diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index efb8ab5383ac0c22e3ed3234ce83e7e0d5e9ec25..c27656bc87c561715413ab4f8fe072fa911a92a9 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -1,9 +1,9 @@
 repos:
   - repo: https://github.com/psf/black
-    rev: 20.8b1
+    rev: 22.6.0
     hooks:
       - id: black
   - repo: https://gitlab.com/pycqa/flake8
-    rev: 3.8.3
+    rev: 4.0.1
     hooks:
       - id: flake8
diff --git a/app/tasks.py b/app/tasks.py
index 28a79937fc19d4f5441f4f13c92f3267975947d1..915e7ecd9dca4c762a32f511e91915c2af576c37 100644
--- a/app/tasks.py
+++ b/app/tasks.py
@@ -106,14 +106,10 @@ def launch_awx_job(resource="job", **kwargs):
     if job_template is None and inventory_source is None:
         current_app.logger.warning("No job_template nor inventory_source passed!")
         return "No job_template nor inventory_source passed!"
-    if (
-        job_template
-        in (
-            current_app.config["AWX_CREATE_VIOC"],
-            current_app.config["AWX_CREATE_VM"],
-        )
-        and not current_app.config.get("AWX_VM_CREATION_ENABLED", False)
-    ):
+    if job_template in (
+        current_app.config["AWX_CREATE_VIOC"],
+        current_app.config["AWX_CREATE_VM"],
+    ) and not current_app.config.get("AWX_VM_CREATION_ENABLED", False):
         current_app.logger.info("AWX VM creation is disabled. Not sending any request.")
         return "AWX VM creation not triggered"
     if not current_app.config.get("AWX_JOB_ENABLED", False):