update Makefile, pep8, scaling
[osm/osmclient.git] / osmclient / v1 / utils.py
index 3a26910..f4baef8 100644 (file)
 OSM utils
 """
 
+
 class Utils(object):
-    def __init__(self,http=None):
-        self._http=http
+    def __init__(self, http=None):
+        self._http = http
 
     def get_vcs_info(self):
-        resp=self._http.get_cmd('api/operational/vcs/info')
+        resp = self._http.get_cmd('api/operational/vcs/info')
         if resp:
             return resp['rw-base:info']['components']['component_info']
         return list()
-