mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 00:38:06 +00:00
Fix: allow integer values in extCommunityListRaw field for Arista BGP parsing
This commit is contained in:
parent
0b2fbb1b4d
commit
2ed949a7a4
1 changed files with 2 additions and 1 deletions
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
# Standard Library
|
||||
import typing as t
|
||||
from typing import Union
|
||||
from datetime import datetime
|
||||
|
||||
# Third Party
|
||||
|
|
@ -64,7 +65,7 @@ class AristaRouteDetail(_AristaBase):
|
|||
|
||||
origin: str
|
||||
label_stack: t.List = []
|
||||
ext_community_list: t.List[str] = []
|
||||
ext_community_list_raw: t.List[Union[str, int]] = []
|
||||
ext_community_list_raw: t.List[str] = []
|
||||
community_list: t.List[str] = []
|
||||
large_community_list: t.List[str] = []
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue