mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
Fix pylint issue (#34773)
This commit is contained in:
parent
03dd3214b4
commit
83b7ec69fc
2 changed files with 2 additions and 5 deletions
|
@ -21,8 +21,6 @@ description:
|
|||
I(infra:AttEntityP) at U(https://developer.cisco.com/media/mim-ref/MO-infraAttEntityP.html).
|
||||
author:
|
||||
- Swetha Chunduri (@schunduri)
|
||||
- Dag Wieers (@dagwieers)
|
||||
- Jacob McGill (@jmcgill298)
|
||||
version_added: '2.4'
|
||||
requirements:
|
||||
- ACI Fabric 1.0(3f)+
|
||||
|
@ -111,8 +109,8 @@ def main():
|
|||
aci.construct_url(
|
||||
root_class=dict(
|
||||
aci_class='infraAttEntityP',
|
||||
aci_rn='infra/attentp-{}'.format(aep),
|
||||
filter_target='eq(infraAttEntityP.name, "{}")'.format(aep),
|
||||
aci_rn='infra/attentp-{0}'.format(aep),
|
||||
filter_target='eq(infraAttEntityP.name, "{0}")'.format(aep),
|
||||
module_object=aep,
|
||||
),
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue