Skip to content

Commit

Permalink
Update napalm, netmiko, python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony House committed Apr 15, 2024
1 parent 36b62be commit 0cfbbc7
Show file tree
Hide file tree
Showing 4 changed files with 860 additions and 1,167 deletions.
5 changes: 4 additions & 1 deletion napalm_panos/panos.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Napalm-panos."""

# pylint: disable=abstract-method,raise-missing-from
# Copyright 2016 Dravetech AB. All rights reserved.
#
Expand Down Expand Up @@ -624,7 +625,9 @@ def get_interfaces(self): # pylint: disable=too-many-locals
"mtu": 0,
"description": "",
}
interface_pattern = re.compile(r"(ethernet\d+/\d+\.\d+)|(ae\d+\.\d+)|(loopback\.)|(tunnel\.)|(vlan\.)|(sdwan\.)")
interface_pattern = re.compile(
r"(ethernet\d+/\d+\.\d+)|(ae\d+\.\d+)|(loopback\.)|(tunnel\.)|(vlan\.)|(sdwan\.)"
)
interface_dict = {}
interface_descr = {}
interface_list = self._extract_interface_list()
Expand Down
Loading

0 comments on commit 0cfbbc7

Please sign in to comment.