Commit fa29f3c1 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Code and MR cleanup

parent 8ad90509
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ XPATH_NETWORK_INSTANCES = "//ocni:network-instances/ocni:network-instance"
def parse(xml_data : ET.Element) -> List[Tuple[str, Dict[str, Any]]]:
    response = []
    for xml_network_instance in xml_data.xpath(XPATH_NETWORK_INSTANCES, namespaces=NAMESPACES):
        LOGGER.info('xml_network_instance = {:s}'.format(str(ET.tostring(xml_network_instance))))
        #LOGGER.info('xml_network_instance = {:s}'.format(str(ET.tostring(xml_network_instance))))

        network_instance = {}