]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
scripts/qmp-shell: ignore visit_Name name
authorJohn Snow <jsnow@redhat.com>
Mon, 7 Jun 2021 20:06:18 +0000 (16:06 -0400)
committerJohn Snow <jsnow@redhat.com>
Fri, 18 Jun 2021 20:10:06 +0000 (16:10 -0400)
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>
scripts/qmp/qmp-shell

index c46f4f516b8b6c587322dbd1d2ccd24e019df622..ea6a87e0b34a903ba45dd6e17394ed524321e339 100755 (executable)
@@ -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':