minor fixes
removed unused imports rearranged basic import added if/main for testing/importability
This commit is contained in:
parent
4d82ff99e2
commit
8fac01a3cc
1 changed files with 3 additions and 8 deletions
|
@ -99,10 +99,8 @@ EXAMPLES = '''
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
||||||
import shlex
|
|
||||||
import os
|
|
||||||
import re
|
import re
|
||||||
import sys
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
|
|
||||||
def query_package(module, pkgng_path, name, dir_arg):
|
def query_package(module, pkgng_path, name, dir_arg):
|
||||||
|
|
||||||
|
@ -351,8 +349,5 @@ def main():
|
||||||
module.exit_json(changed=changed, msg=", ".join(msgs))
|
module.exit_json(changed=changed, msg=", ".join(msgs))
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
# import module snippets
|
main()
|
||||||
from ansible.module_utils.basic import *
|
|
||||||
|
|
||||||
main()
|
|
||||||
|
|
Loading…
Reference in a new issue