summaryrefslogtreecommitdiffstats
path: root/manifest_xml.py
diff options
context:
space:
mode:
authorDavid Pursehouse <dpursehouse@collab.net>2018-06-24 16:21:51 +0900
committerDylan Deng <dxx1104@gmail.com>2018-07-24 22:20:08 +0800
commit65b0ba5aa0447f7ee25103828115662b1eb80ff9 (patch)
treedebc2790e91665968a31319f8fe039f4638911a1 /manifest_xml.py
parenta6515fb952ab31a820288ce342e31d2917d0a06c (diff)
downloadgit-repo-65b0ba5aa0447f7ee25103828115662b1eb80ff9.tar.gz
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
Diffstat (limited to 'manifest_xml.py')
-rw-r--r--manifest_xml.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/manifest_xml.py b/manifest_xml.py
index d0211eaf..81a6a858 100644
--- a/manifest_xml.py
+++ b/manifest_xml.py
@@ -483,8 +483,7 @@ class XmlManifest(object):
483 raise ManifestParseError("no <manifest> in %s" % (path,)) 483 raise ManifestParseError("no <manifest> in %s" % (path,))
484 484
485 nodes = [] 485 nodes = []
486 for node in manifest.childNodes: # pylint:disable=W0631 486 for node in manifest.childNodes:
487 # We only get here if manifest is initialised
488 if node.nodeName == 'include': 487 if node.nodeName == 'include':
489 name = self._reqatt(node, 'name') 488 name = self._reqatt(node, 'name')
490 fp = os.path.join(include_root, name) 489 fp = os.path.join(include_root, name)