Skip to content

Commit

Permalink
Fix: allow integer values in extCommunityListRaw field for Arista BGP…
Browse files Browse the repository at this point in the history
… parsing
  • Loading branch information
cooperwinser committed Dec 9, 2024
1 parent 2ed949a commit 7135ec3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hyperglass/models/parsing/arista_eos.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ 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] = []

Expand Down

0 comments on commit 7135ec3

Please sign in to comment.