Fixing flake and black issues in code, enabling the same in tox
[osm/LCM.git] / osm_lcm / ng_ro.py
index 03819c8..95aa5c9 100644 (file)
@@ -347,7 +347,9 @@ class NgRoClient:
                 target = self._parse_yaml(target)
             payload_req = yaml.safe_dump(target)
 
-            url = "{}/ns/v1/verticalscale/{nsr_id}".format(self.endpoint_url, nsr_id=nsr_id)
+            url = "{}/ns/v1/verticalscale/{nsr_id}".format(
+                self.endpoint_url, nsr_id=nsr_id
+            )
             async with aiohttp.ClientSession(loop=self.loop) as session:
                 self.logger.debug("NG-RO POST %s %s", url, payload_req)
                 async with session.post(