remove unused imports

This commit is contained in:
Yu Ming Zhu 2019-12-10 00:25:54 +00:00
parent 63c50c2a31
commit 5b83c682e4
7 changed files with 7 additions and 10 deletions

View file

@ -47,7 +47,7 @@ import six
import six.moves.xmlrpc_client
# urllib is required by the SCM class which is substituted into this file
# do not remove the import below
from six.moves import urllib
from six.moves import urllib # noqa: F401
from six.moves.configparser import ConfigParser, SafeConfigParser
MANAGER_PORT = 7000

View file

@ -41,14 +41,14 @@ from optparse import OptionParser
import libvirt
import libxml2
import requests
import rpm
import six.moves.xmlrpc_client
import six.moves.xmlrpc_server
import koji
import koji.util
from koji.daemon import SCM, TaskManager
from koji.tasks import (BaseTaskHandler, MultiPlatformTask, RestartTask,
# TaskHandlers are required to be imported, do not remove them
from koji.tasks import (BaseTaskHandler, MultiPlatformTask, RestartTask, # noqa: F401
RestartVerifyTask, ServerExit, ServerRestart)
try: