From: John Snow Date: Mon, 7 Jun 2021 20:06:18 +0000 (-0400) Subject: scripts/qmp-shell: ignore visit_Name name X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=50f6f1c3081322a1d9e2d0bbe5c9f434d712cf50;p=qemu.git scripts/qmp-shell: ignore visit_Name name Not something I control, sorry, pylint. Signed-off-by: John Snow Message-id: 20210607200649.1840382-12-jsnow@redhat.com Signed-off-by: John Snow --- diff --git a/scripts/qmp/qmp-shell b/scripts/qmp/qmp-shell index c46f4f516b..ea6a87e0b3 100755 --- a/scripts/qmp/qmp-shell +++ b/scripts/qmp/qmp-shell @@ -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':