cleanup import for htpassword module
In order to ease future refactoring, we should avoid importing '*' from ansible.module_utils.basic.
This commit is contained in:
parent
2c078dcb97
commit
e6b3c0d88a
1 changed files with 2 additions and 1 deletions
|
@ -257,7 +257,8 @@ def main():
|
||||||
|
|
||||||
|
|
||||||
# import module snippets
|
# import module snippets
|
||||||
from ansible.module_utils.basic import *
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
|
from ansible.module_utils.pycompat24 import get_exception
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
Loading…
Reference in a new issue