mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 00:38:06 +00:00
Removed Union import
This commit is contained in:
parent
7135ec3c9c
commit
c369af439d
1 changed files with 1 additions and 2 deletions
|
|
@ -2,7 +2,6 @@
|
|||
|
||||
# Standard Library
|
||||
import typing as t
|
||||
from typing import Union
|
||||
from datetime import datetime
|
||||
|
||||
# Third Party
|
||||
|
|
@ -66,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[t.Union[str, int]] = []
|
||||
community_list: t.List[str] = []
|
||||
large_community_list: t.List[str] = []
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue