From 85edb651e2fe425d9d823ad27ae1b2e3099df8f0 Mon Sep 17 00:00:00 2001 From: Jimmy Zelinskie Date: Tue, 17 Feb 2015 15:32:25 -0500 Subject: [PATCH] buildserver: remove pylint comments --- buildman/server.py | 4 ---- 1 file changed, 4 deletions(-) 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