mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-03-22 13:19:13 +00:00
Fix unsorted imports reported by ruff
This commit is contained in:
parent
19043541f1
commit
d734dbbcf7
1 changed files with 3 additions and 3 deletions
|
|
@ -107,9 +107,6 @@ rc:
|
|||
|
||||
import json
|
||||
import traceback
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
from ansible.module_utils.compat.version import LooseVersion
|
||||
from ansible.module_utils.basic import missing_required_lib
|
||||
|
||||
LIB_IMP_ERR = None
|
||||
HAS_LIB = False
|
||||
|
|
@ -120,6 +117,9 @@ try:
|
|||
except ImportError:
|
||||
LIB_IMP_ERR = traceback.format_exc()
|
||||
|
||||
from ansible.module_utils.basic import AnsibleModule, missing_required_lib
|
||||
from ansible.module_utils.compat.version import LooseVersion
|
||||
|
||||
|
||||
MINIMUM_UV_VERSION = "0.8.0"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue