Skip to content

Commit

Permalink
[ignore] Apply Black for formating python files.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmicol committed Sep 13, 2023
1 parent 6ee8a5b commit f460ecc
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions plugins/modules/aci_l3out_logical_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,8 @@ def main():
aci = ACIModule(module)

if loopback_address is not None:
child_classes = ["l3extLoopBackIfP"]
child_configs = [dict(l3extLoopBackIfP=dict(attributes=dict(name="", descr="", addr=loopback_address)))]
child_classes = ["l3extLoopBackIfP"]
child_configs = [dict(l3extLoopBackIfP=dict(attributes=dict(name="", descr="", addr=loopback_address)))]
else:
child_classes = []
child_configs = []
Expand Down Expand Up @@ -315,11 +315,7 @@ def main():
if state == "present":
aci.payload(
aci_class="l3extRsNodeL3OutAtt",
class_config=dict(
rtrId=router_id,
rtrIdLoopBack=router_id_as_loopback,
tDn=tdn
),
class_config=dict(rtrId=router_id, rtrIdLoopBack=router_id_as_loopback, tDn=tdn),
child_configs=child_configs,
)

Expand Down

0 comments on commit f460ecc

Please sign in to comment.