Fixes missing parent constructor call in openstack based infra collectors
[osm/MON.git] / osm_mon / collector / infra_collectors / vio.py
index 781b402..d8d8fcc 100644 (file)
@@ -28,4 +28,4 @@ from osm_mon.core.config import Config
 
 class VIOInfraCollector(BaseOpenStackInfraCollector):
     def __init__(self, config: Config, vim_account_id: str):
-        pass
+        super(VIOInfraCollector, self).__init__(config, vim_account_id)