buildreporter: rm pylint comments
This commit is contained in:
parent
0e7418ffce
commit
0a00453024
1 changed files with 0 additions and 4 deletions
|
@ -4,11 +4,9 @@ from trollius import From
|
||||||
from util.cloudwatch import get_queue
|
from util.cloudwatch import get_queue
|
||||||
|
|
||||||
|
|
||||||
# pylint: disable=invalid-name
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
# pylint: disable=too-few-public-methods
|
|
||||||
class BuildReporter(object):
|
class BuildReporter(object):
|
||||||
"""
|
"""
|
||||||
Base class for reporting build statuses to a metrics service.
|
Base class for reporting build statuses to a metrics service.
|
||||||
|
@ -29,12 +27,10 @@ class NullReporter(BuildReporter):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
# pylint: disable=too-many-instance-attributes
|
|
||||||
class CloudWatchBuildReporter(BuildReporter):
|
class CloudWatchBuildReporter(BuildReporter):
|
||||||
"""
|
"""
|
||||||
Implements a BuildReporter for Amazon's CloudWatch.
|
Implements a BuildReporter for Amazon's CloudWatch.
|
||||||
"""
|
"""
|
||||||
# pylint: disable=too-many-arguments
|
|
||||||
def __init__(self, queue, namespace_name, completed_name, failed_name, incompleted_name):
|
def __init__(self, queue, namespace_name, completed_name, failed_name, incompleted_name):
|
||||||
self._queue = queue
|
self._queue = queue
|
||||||
self._namespace_name = namespace_name
|
self._namespace_name = namespace_name
|
||||||
|
|
Reference in a new issue