Skip to content

Commit 3d68fbd

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 3a6a909 commit 3d68fbd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

python-avd/pyavd/_eos_designs/structured_config/network_services/ipv6_static_routes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ def ipv6_static_routes(self: AvdStructuredConfigNetworkServicesProtocol) -> None
4444
tag=static_route.tag,
4545
name=static_route.name,
4646
metric=static_route.metric,
47-
interface=static_route.interface
47+
interface=static_route.interface,
4848
)
4949
self.structured_config.ipv6_static_routes.append_unique(static_route_item)

python-avd/pyavd/_eos_designs/structured_config/network_services/static_routes.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def static_routes(self: AvdStructuredConfigNetworkServicesProtocol) -> None:
4646
distance=static_route.distance,
4747
tag=static_route.tag,
4848
name=static_route.name,
49-
metric=static_route.metric
49+
metric=static_route.metric,
5050
)
5151
self.structured_config.static_routes.append_unique(static_route_item)
5252

@@ -62,7 +62,7 @@ def static_routes(self: AvdStructuredConfigNetworkServicesProtocol) -> None:
6262
tag=static_route.tag,
6363
name=static_route.name,
6464
metric=static_route.metric,
65-
interface=static_route.interface
65+
interface=static_route.interface,
6666
)
6767
self.structured_config.static_routes.append_unique(static_route_item)
6868

0 commit comments

Comments
 (0)