From: John Snow Date: Wed, 15 Feb 2023 00:00:06 +0000 (-0500) Subject: qapi: Update flake8 config X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=6f2ddcde774d5cbe522693b374f45a1bcb70cebf;p=qmiga%2Fqemu.git qapi: Update flake8 config New versions of flake8 don't like same-line comments. (It's a version newer than what fc37 ships, but it still makes my life easier to fix it now.) Signed-off-by: John Snow Reviewed-by: Markus Armbruster Message-Id: <20230215000011.1725012-2-jsnow@redhat.com> --- diff --git a/scripts/qapi/.flake8 b/scripts/qapi/.flake8 index 6b158c68b8..a873ff6730 100644 --- a/scripts/qapi/.flake8 +++ b/scripts/qapi/.flake8 @@ -1,2 +1,3 @@ [flake8] -extend-ignore = E722 # Prefer pylint's bare-except checks to flake8's +# Prefer pylint's bare-except checks to flake8's +extend-ignore = E722