summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--system/authorized_key.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/system/authorized_key.py b/system/authorized_key.py
index 3435cfc9..fabc7af3 100644
--- a/system/authorized_key.py
+++ b/system/authorized_key.py
@@ -491,6 +491,7 @@ def main():
module.exit_json(**results)
# import module snippets
-from ansible.module_utils.basic import *
-from ansible.module_utils.urls import *
+from ansible.module_utils.basic import AnsibleModule
+from ansible.module_utils.urls import fetch_url
+from ansible.module_utils.pycompat24 import get_exception
main()