From a865dbe38dd83188d9b86eeefa8010710cd97d0d Mon Sep 17 00:00:00 2001 From: Louis Date: Mon, 21 Jul 2014 19:21:31 +0200 Subject: [PATCH] pylint --- patacrep/plastex_chord.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/patacrep/plastex_chord.py b/patacrep/plastex_chord.py index 30069bfa..b5a391f2 100644 --- a/patacrep/plastex_chord.py +++ b/patacrep/plastex_chord.py @@ -82,11 +82,11 @@ class BeginChordOrDisplayMath(BeginDisplayMath): if IN_VERSE: chord = Chord() - self.ownerDocument.context.push() - self.ownerDocument.context.catcode("&", 13) + self.ownerDocument.context.push() #pylint: disable=no-member + self.ownerDocument.context.catcode("&", 13) #pylint: disable=no-member for token in tex: if token.nodeType == token.TEXT_NODE and token.nodeValue == ']': - self.ownerDocument.context.pop() + self.ownerDocument.context.pop() #pylint: disable=no-member break else: chord.appendChild(token)