Enable black in tox.ini
[osm/MON.git] / osm_mon / server / service.py
index d1b408b..7bc6dfc 100755 (executable)
@@ -62,17 +62,10 @@ class ServerService:
         # without side-effects.
         log.info("Setting up MON Exporter in prometheus")
         result = self.common_db.common_db.set_one(
-            "prometheus_jobs", {"job_name": "mon_exporter"}, {
-                "job_name": "mon_exporter",
-                "static_configs": [
-                    {
-                        "targets": [
-                            "mon:8000"
-                        ]
-                    }
-                ]
-            },
+            "prometheus_jobs",
+            {"job_name": "mon_exporter"},
+            {"job_name": "mon_exporter", "static_configs": [{"targets": ["mon:8000"]}]},
             fail_on_empty=False,
-            upsert=True
+            upsert=True,
         )
         log.info("Prometheus Jobs added > {}".format(result))