From 0a00453024f8e7fcbed0f8f83ef518830944a275 Mon Sep 17 00:00:00 2001 From: Jimmy Zelinskie Date: Tue, 17 Feb 2015 12:20:46 -0500 Subject: [PATCH] buildreporter: rm pylint comments --- buildman/jobutil/buildreporter.py | 4 ---- 1 file changed, 4 deletions(-) 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