A module has been imported but is not used anywhere in the file.
The module should either be used or the import should be removed.
Ref: https://www.flake8rules.com/rules/F401.html
Change-Id: I3e73260628bdbeccab2a7dd78215aa83a2ee71ff
Signed-off-by: Thanh Ha <zxiiro@gmail.com>
import os
import sys
-import sphinx_bootstrap_theme
+import sphinx_bootstrap_theme # noqa
sys.path.insert(0, os.path.abspath(".."))
-from docs_conf.conf import *
+from docs_conf.conf import * # noqa
from pbr.version import VersionInfo
version = str(VersionInfo("lftools"))
import click
-from lftools.api.endpoints import nexus3
-
log = logging.getLogger(__name__)
"""Test deploy command."""
import os
-import sys
import pytest
import requests
"""Test deploy command."""
import os
-import sys
import pytest
import requests
import responses
import lftools.nexus.release_docker_hub as rdh
-from lftools import cli
FIXTURE_DIR = os.path.join(
os.path.dirname(os.path.realpath(__file__)),