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 --- git_config.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'git_config.py') diff --git a/git_config.py b/git_config.py index 854b2387..7bc6f77d 100644 --- a/git_config.py +++ b/git_config.py @@ -306,8 +306,7 @@ class GitConfig(object): d = self._do('--null', '--list') if d is None: return c - for line in d.decode('utf-8').rstrip('\0').split('\0'): # pylint: disable=W1401 - # Backslash is not anomalous + for line in d.decode('utf-8').rstrip('\0').split('\0'): if '\n' in line: key, val = line.split('\n', 1) else: -- cgit v1.2.3-54-g00ecf