diff --git a/buildman/server.py b/buildman/server.py index 9aad39b5c..900746c6e 100644 --- a/buildman/server.py +++ b/buildman/server.py @@ -17,7 +17,6 @@ from buildman.jobutil.buildjob import BuildJob, BuildJobLoadException from data import database from app import app, build_metrics -# pylint: disable=invalid-name logger = logging.getLogger(__name__) WORK_CHECK_TIMEOUT = 10 @@ -27,19 +26,16 @@ MINIMUM_JOB_EXTENSION = timedelta(minutes=2) HEARTBEAT_PERIOD_SEC = 30 -# pylint: disable=too-few-public-methods class BuildJobResult(object): """ Build job result enum """ INCOMPLETE = 'incomplete' COMPLETE = 'complete' ERROR = 'error' -# pylint: disable=too-many-instance-attributes class BuilderServer(object): """ Server which handles both HTTP and WAMP requests, managing the full state of the build controller. """ - # pylint: disable=too-many-arguments def __init__(self, registry_hostname, queue, build_logs, user_files, lifecycle_manager_klass, lifecycle_manager_config, manager_hostname): self._loop = None