diff --git a/napalm_panos/panos.py b/napalm_panos/panos.py index 156ef0e..7e80459 100644 --- a/napalm_panos/panos.py +++ b/napalm_panos/panos.py @@ -531,10 +531,8 @@ def get_interfaces(self): # pylint: disable=too-many-locals interface_dict = {} interface_descr = {} interface_list = self._extract_interface_list() - - - config = xml.etree.ElementTree.fromstring(self.get_config()["running"]) + config = xml.etree.ElementTree.fromstring(self.get_config()["running"]) # nosec for eth_int in config.findall(".//ethernet/entry"): name = eth_int.attrib["name"] description = eth_int.findtext(".//comment") or ""