mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixed ansible module import which I changed chasing a better PEP-8 score.
This commit is contained in:
parent
385f319b46
commit
de43779565
1 changed files with 1 additions and 1 deletions
|
@ -128,5 +128,5 @@ def main():
|
||||||
module.fail_json(msg='Request Failed', reason=e)
|
module.fail_json(msg='Request Failed', reason=e)
|
||||||
module.exit_json(changed=True, annotation=resp.json())
|
module.exit_json(changed=True, annotation=resp.json())
|
||||||
|
|
||||||
from ansible.module_utils.basic import AnsibleModule
|
from ansible.module_utils.basic import *
|
||||||
main()
|
main()
|
||||||
|
|
Loading…
Reference in a new issue