d/salsa-ci.yml: Ignore pycodestyle error E241

pycodestyle reports:

    debian/bin/gencontrol.py:615:29: E241 multiple spaces after ','
    debian/bin/gencontrol.py:616:29: E241 multiple spaces after ','
    debian/bin/gencontrol.py:617:27: E241 multiple spaces after ','
    debian/bin/gencontrol.py:618:28: E241 multiple spaces after ','

Using multiple spaces to align columns is perfectly valid, and flake8
(as we use in more recent branches) doesn't complain about this.  So
add this to the ignore list.
This commit is contained in:
Ben Hutchings 2025-08-08 02:24:19 +02:00
parent 5df632b7c8
commit a8db5e9fdf
2 changed files with 2 additions and 1 deletions

1
debian/changelog vendored
View file

@ -13,6 +13,7 @@ linux (6.1.147-2) UNRELEASED; urgency=medium
* d/rules: Include target suite as an input to gencontrol.py
* Generate kernel ABI name suffix automatically if not configured
* Delete ABI name suffix and ABI reference
* d/salsa-ci.yml: Ignore pycodestyle error E241
-- Ben Hutchings <benh@debian.org> Wed, 06 Aug 2025 22:07:54 +0200

2
debian/salsa-ci.yml vendored
View file

@ -195,7 +195,7 @@ python-static:
# Ignore E126,E226,W503 (ignored by default) and also E127,W291 which
# give false positives.
- |
xargs pycodestyle --max-line-length=100 --ignore E126,E127,E226,W291,W503 \
xargs pycodestyle --max-line-length=100 --ignore E126,E127,E226,E241,W291,W503 \
< "$sources" || pass=false
- xargs pyflakes3 < "$sources" || pass=false
- $pass