Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jul 23, 2024
1 parent 21af677 commit 3fe14ed
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,8 @@ def ethernet_interfaces(self: AvdStructuredConfigNetworkServices) -> list | None
if self._l3_interface_acls is not None:
interface.update(
{
"access_group_in": get(
self._l3_interface_acls, f"{interface_name}..ipv4_acl_in..name", separator=".."
),
"access_group_out": get(
self._l3_interface_acls, f"{interface_name}..ipv4_acl_out..name", separator=".."
),
"access_group_in": get(self._l3_interface_acls, f"{interface_name}..ipv4_acl_in..name", separator=".."),
"access_group_out": get(self._l3_interface_acls, f"{interface_name}..ipv4_acl_out..name", separator=".."),
}
)

Expand Down

0 comments on commit 3fe14ed

Please sign in to comment.