scripts/qmp-shell: ignore visit_Name name

Not something I control, sorry, pylint.

Signed-off-by: John Snow <jsnow@redhat.com>
Message-id: 20210607200649.1840382-12-jsnow@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
master
John Snow 2021-06-07 16:06:18 -04:00
parent c6be2bf86e
commit 50f6f1c308
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ class FuzzyJSON(ast.NodeTransformer):
"""
@classmethod
def visit_Name(cls, node):
def visit_Name(cls, node): # pylint: disable=invalid-name
if node.id == 'true':
node.id = 'True'
if node.id == 'false':