On 11.10.21 11:58, Emanuele Giuseppe Esposito wrote:
On 11/10/2021 11:29, Hanna Reitz wrote:
On 08.10.21 08:28, Emanuele Giuseppe Esposito wrote:
There are some warnings and errors that we either miss or
are new in pylint. Anyways, test 297 of qemu-iotests fails
because of that, so we need to fix it.
All these fixes involve just indentation or additional spaces
added.
Signed-off-by: Emanuele Giuseppe Esposito <eespo...@redhat.com>
---
v2:
* temporarly enable and then disable "bad whitespace" error in
image-fleecing
* better indentation for a fix in test 129 in patch one
So the changes look good to me, but I can’t get my pylint to generate
a bad-whitespace warning no matter how hard I try. (When you asked on
IRC whether others see pylint warnings, I thought you meant the
consider-using-f-string warnings that John disabled in
3765315d4c84f9c0799744f43a314169baaccc05.)
I have pylint 2.11.1, which should be the newest version. So I tried
to look around what might be the cause and found this:
https://pylint.pycqa.org/en/latest/whatsnew/2.6.html – it seems that
as of pylint 2.6, bad-whitespace warnings are no longer emitted. If
that’s the reason why I can’t see the warning, then I think we should
take only patch 1 (because it just makes sense), but skip patch 2.
Yes you are right. I had 2.4.4, and now that I upgraded to 2.11.1 I
don't see bad-whitespace errors anymore (actually pylint does not seem
to complain at all). So I agree we can just take patch 1, as
formatting is wrong anyways.
OK, thanks!
I’ve applied patch 1 to my block branch:
https://gitlab.com/hreitz/qemu/-/commits/block/
Hanna