From: John Snow Date: Thu, 16 Sep 2021 18:22:48 +0000 (-0400) Subject: python: pylint 2.11 support X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=eb8033f658e8b6f23ba9f4ef4a1b55894f7ea486;p=qemu.git python: pylint 2.11 support We're not ready to enforce f-strings everywhere, so just silence this new warning. Signed-off-by: John Snow Reviewed-by: Eduardo Habkost Reviewed-by: Willian Rampazzo Message-id: 20210916182248.721529-3-jsnow@redhat.com Signed-off-by: John Snow --- diff --git a/python/setup.cfg b/python/setup.cfg index 0f0cab098f..fdca265fec 100644 --- a/python/setup.cfg +++ b/python/setup.cfg @@ -87,7 +87,7 @@ ignore_missing_imports = True # --enable=similarities". If you want to run only the classes checker, but have # no Warning level messages displayed, use "--disable=all --enable=classes # --disable=W". -disable= +disable=consider-using-f-string, [pylint.basic] # Good variable names which should always be accepted, separated by a comma.