Skip to content

Commit

Permalink
Fixing docstring.
Browse files Browse the repository at this point in the history
  • Loading branch information
Laxmikant Chintakindi authored and Laxmikant Chintakindi committed Jul 16, 2024
1 parent 86e174a commit 0f77a4a
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -690,12 +690,14 @@ def _filtered_internet_exit_policy_types(self: AvdStructuredConfigNetworkService
def _l3_interface_acls(self: AvdStructuredConfigNetworkServices):
"""
Returns a dict of
<interface_name>: {
<hostname> : {
<interface_name>: {
"ipv4_acl_in": <generated_ipv4_acl>,
"ipv4_acl_out": <generated_ipv4_acl>,
}
}
Only contains interfaces with ACLs and only the ACLs that are set,
so use `get(self._l3_interface_acls, f"{interface_name}.ipv4_acl_in")` to get the value.
so use `get(self._l3_interface_acls, f"{hostname}.{interface_name}.ipv4_acl_in")` to get the value.
"""

if not self.shared_utils.network_services_l3:
Expand Down

0 comments on commit 0f77a4a

Please sign in to comment.