From 65b0ba5aa0447f7ee25103828115662b1eb80ff9 Mon Sep 17 00:00:00 2001 From: David Pursehouse Date: Sun, 24 Jun 2018 16:21:51 +0900 Subject: Remove unused pylint suppressions pylint is not used since bb5b1a0. The pyflakes cleanup mentioned in that commit has not been done, but given that this project is no longer being actively developed I don't think it's worth spending time doing it. Leaving the pylint suppressions causes confusion because it leads people to think that we are still using pylint. Change-Id: If7d9f280a0f408c780f15915ffdb80579ae21f69 --- project.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'project.py') diff --git a/project.py b/project.py index 855bd60d..d551351b 100755 --- a/project.py +++ b/project.py @@ -48,9 +48,7 @@ else: import urlparse urllib = imp.new_module('urllib') urllib.parse = urlparse - # pylint:disable=W0622 input = raw_input - # pylint:enable=W0622 def _lwrite(path, content): @@ -2671,7 +2669,7 @@ class Project(object): out = p.stdout if out: # Backslash is not anomalous - return out[:-1].split('\0') # pylint: disable=W1401 + return out[:-1].split('\0') return [] def DiffZ(self, name, *args): @@ -2688,7 +2686,7 @@ class Project(object): out = p.process.stdout.read() r = {} if out: - out = iter(out[:-1].split('\0')) # pylint: disable=W1401 + out = iter(out[:-1].split('\0')) while out: try: info = next(out) -- cgit v1.2.3-54-g00ecf