mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
proxmox: remove unused imports (#6873)
* proxmox: remove unused imports * add changelog frag
This commit is contained in:
parent
242258eb53
commit
e79c7e0f41
2 changed files with 2 additions and 8 deletions
2
changelogs/fragments/6873-proxmox-imports.yml
Normal file
2
changelogs/fragments/6873-proxmox-imports.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
removed_features:
|
||||||
|
- proxmox module utils - removed unused imports (https://github.com/ansible-collections/community.general/pull/6873).
|
|
@ -7,12 +7,6 @@
|
||||||
from __future__ import absolute_import, division, print_function
|
from __future__ import absolute_import, division, print_function
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
# (TODO: remove next line!)
|
|
||||||
import atexit # noqa: F401, pylint: disable=unused-import
|
|
||||||
# (TODO: remove next line!)
|
|
||||||
import time # noqa: F401, pylint: disable=unused-import
|
|
||||||
# (TODO: remove next line!)
|
|
||||||
import re # noqa: F401, pylint: disable=unused-import
|
|
||||||
import traceback
|
import traceback
|
||||||
|
|
||||||
PROXMOXER_IMP_ERR = None
|
PROXMOXER_IMP_ERR = None
|
||||||
|
@ -26,8 +20,6 @@ except ImportError:
|
||||||
|
|
||||||
|
|
||||||
from ansible.module_utils.basic import env_fallback, missing_required_lib
|
from ansible.module_utils.basic import env_fallback, missing_required_lib
|
||||||
# (TODO: remove next line!)
|
|
||||||
from ansible.module_utils.common.text.converters import to_native # noqa: F401, pylint: disable=unused-import
|
|
||||||
from ansible_collections.community.general.plugins.module_utils.version import LooseVersion
|
from ansible_collections.community.general.plugins.module_utils.version import LooseVersion
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue