mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02: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,
|
||||
),
|
||||
)
|
||||
|
|
|
@ -37,7 +37,6 @@ lib/ansible/modules/monitoring/grafana_plugin.py ansible-format-automatic-specif
|
|||
lib/ansible/modules/net_tools/dnsmadeeasy.py ansible-format-automatic-specification
|
||||
lib/ansible/modules/net_tools/ipinfoio_facts.py ansible-format-automatic-specification
|
||||
lib/ansible/modules/network/a10/a10_server_axapi3.py ansible-format-automatic-specification
|
||||
lib/ansible/modules/network/aci/aci_aep.py ansible-format-automatic-specification
|
||||
lib/ansible/modules/network/aci/aci_ap.py ansible-format-automatic-specification
|
||||
lib/ansible/modules/network/aci/aci_bd.py ansible-format-automatic-specification
|
||||
lib/ansible/modules/network/aci/aci_bd_subnet.py ansible-format-automatic-specification
|
||||
|
|
Loading…
Reference in a new issue