]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
qapi/pylintrc: ignore 'consider-using-f-string' warning
authorJohn Snow <jsnow@redhat.com>
Thu, 30 Sep 2021 20:57:04 +0000 (16:57 -0400)
committerMarkus Armbruster <armbru@redhat.com>
Sat, 2 Oct 2021 05:33:41 +0000 (07:33 +0200)
Pylint 2.11.x adds this warning. We're not yet ready to pursue that
conversion, so silence it for now.

Signed-off-by: John Snow <jsnow@redhat.com>
Message-Id: <20210930205716.1148693-2-jsnow@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
scripts/qapi/pylintrc

index c5275d5f59be43849d45bca8df1bdbe76bb80e60..5b7dbc58ad82504d06e18d131739bcef53f908a0 100644 (file)
@@ -23,6 +23,7 @@ disable=fixme,
         too-many-branches,
         too-many-statements,
         too-many-instance-attributes,
+        consider-using-f-string,
 
 [REPORTS]