grim/pyparser

remove old pylint comments

2016-08-12, Gary Kramlich
b02051d4f18a
Parents 3bc331e49f6d
Children 47d87c888111
remove old pylint comments
--- a/src/pyparser/delimiter.py Fri Aug 12 11:09:27 2016 -0500
+++ b/src/pyparser/delimiter.py Fri Aug 12 11:10:24 2016 -0500
@@ -32,7 +32,7 @@
def process(self, line):
parts = line.split(self.delimiter, self.max_splits)
- self.process_line(*parts) # pylint:disable-msg=W0142
+ self.process_line(*parts)
@abc.abstractmethod
def process_line(self, *splits):
--- a/tests/test_parser.py Fri Aug 12 11:09:27 2016 -0500
+++ b/tests/test_parser.py Fri Aug 12 11:10:24 2016 -0500
@@ -41,12 +41,12 @@
self.finished = False
-class TestCountingParser(unittest.TestCase): # pylint:disable-msg=R0904
+class TestCountingParser(unittest.TestCase):
"""
Just test counting of lines via a parser
"""
- def setUp(self): # pylint:disable-msg=C0103
+ def setUp(self):
self.parser = CountingParser()
def _parse_file(self, filename, lines):