diff --git a/buildman/jobutil/buildreporter.py b/buildman/jobutil/buildreporter.py index 0016778dc..f8ccf1fd5 100644 --- a/buildman/jobutil/buildreporter.py +++ b/buildman/jobutil/buildreporter.py @@ -4,11 +4,9 @@ from trollius import From from util.cloudwatch import get_queue -# pylint: disable=invalid-name logger = logging.getLogger(__name__) -# pylint: disable=too-few-public-methods class BuildReporter(object): """ Base class for reporting build statuses to a metrics service. @@ -29,12 +27,10 @@ class NullReporter(BuildReporter): pass -# pylint: disable=too-many-instance-attributes class CloudWatchBuildReporter(BuildReporter): """ Implements a BuildReporter for Amazon's CloudWatch. """ - # pylint: disable=too-many-arguments def __init__(self, queue, namespace_name, completed_name, failed_name, incompleted_name): self._queue = queue self._namespace_name = namespace_name