File tree 2 files changed +3
-3
lines changed
python-avd/pyavd/_eos_designs/structured_config/network_services
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,6 @@ def ipv6_static_routes(self: AvdStructuredConfigNetworkServicesProtocol) -> None
44
44
tag = static_route .tag ,
45
45
name = static_route .name ,
46
46
metric = static_route .metric ,
47
- interface = static_route .interface
47
+ interface = static_route .interface ,
48
48
)
49
49
self .structured_config .ipv6_static_routes .append_unique (static_route_item )
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ def static_routes(self: AvdStructuredConfigNetworkServicesProtocol) -> None:
46
46
distance = static_route .distance ,
47
47
tag = static_route .tag ,
48
48
name = static_route .name ,
49
- metric = static_route .metric
49
+ metric = static_route .metric ,
50
50
)
51
51
self .structured_config .static_routes .append_unique (static_route_item )
52
52
@@ -62,7 +62,7 @@ def static_routes(self: AvdStructuredConfigNetworkServicesProtocol) -> None:
62
62
tag = static_route .tag ,
63
63
name = static_route .name ,
64
64
metric = static_route .metric ,
65
- interface = static_route .interface
65
+ interface = static_route .interface ,
66
66
)
67
67
self .structured_config .static_routes .append_unique (static_route_item )
68
68
You can’t perform that action at this time.
0 commit comments