1
0
Fork 0
mirror of https://github.com/containers/ansible-podman-collections.git synced 2026-02-04 07:11:49 +00:00

Fix pylint issues for CI ansible-test (#550)

Signed-off-by: Sagi Shnaidman <sshnaidm@redhat.com>
This commit is contained in:
Sergey 2023-02-14 16:22:36 +02:00 committed by GitHub
parent 9d168430a4
commit 1bfa6396a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 0 additions and 7 deletions

View file

@ -7,7 +7,6 @@ __metaclass__ = type
import json
import os
import shutil
import signal
from ansible.module_utils.six import raise_from
try:

View file

@ -45,8 +45,6 @@ EXAMPLES = '''
command: python -V
'''
from copy import deepcopy # noqa: F402
from ansible.module_utils.basic import AnsibleModule # noqa: F402
from ..module_utils.podman.podman_container_lib import PodmanManager # noqa: F402
from ..module_utils.podman.podman_container_lib import set_container_opts # noqa: F402

View file

@ -83,7 +83,6 @@ EXAMPLES = r"""
"""
# noqa: F402
import json # noqa: F402
import hashlib
import os
from ansible.module_utils.basic import AnsibleModule

View file

@ -60,7 +60,6 @@ login:
}
"""
import json
from ansible.module_utils.basic import AnsibleModule

View file

@ -84,7 +84,6 @@ EXAMPLES = r"""
"""
# noqa: F402
import json # noqa: F402
from ansible.module_utils.basic import AnsibleModule

View file

@ -185,7 +185,6 @@ network:
"""
import json # noqa: F402
import os # noqa: F402
try:
import ipaddress
HAS_IP_ADDRESS_MODULE = True