Skip to content

Commit

Permalink
Merge a7b3090 into e1679b1
Browse files Browse the repository at this point in the history
  • Loading branch information
mirceaulinic committed Apr 14, 2020
2 parents e1679b1 + a7b3090 commit db7f4f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 1 addition & 3 deletions napalm/ios/ios.py
Expand Up @@ -2439,9 +2439,7 @@ def get_mac_address_table(self):
) # 7 fields
RE_MACTABLE_6500_2 = r"^{}\s+{}\s+".format(VLAN_REGEX, MAC_REGEX) # 6 fields
RE_MACTABLE_6500_3 = r"^\s{51}\S+" # Fill down prior
RE_MACTABLE_6500_4 = r"^R\s+{}\s+.*Router".format(
VLAN_REGEX, MAC_REGEX
) # Router field
RE_MACTABLE_6500_4 = r"^R\s+{}\s+.*Router".format(VLAN_REGEX) # Router field
RE_MACTABLE_6500_5 = r"^R\s+N/A\s+{}.*Router".format(
MAC_REGEX
) # Router skipped
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Expand Up @@ -7,7 +7,7 @@ license_file = LICENSE
[pylama]
linters = mccabe,pep8,pyflakes
ignore = D203,C901,E203
skip = .tox/*
skip = .tox/*,.env/*,.venv/*

[pylama:pep8]
max_line_length = 100
Expand All @@ -17,6 +17,7 @@ norecursedirs =
.git
.tox
.env
.venv
dist
build
south_migraitons
Expand Down

0 comments on commit db7f4f6

Please sign in to comment.