disable new pylint/pep8 errors, this code is frozen

This commit is contained in:
Hans-Christoph Steiner 2022-09-06 11:02:46 +02:00
parent 6774ab7a92
commit 5abdb46de8

View file

@ -62,9 +62,11 @@ fi
# - Some lines are awkward to wrap around a char limit # - Some lines are awkward to wrap around a char limit
# * W503: line break before binary operator # * W503: line break before binary operator
# - Quite pedantic # - Quite pedantic
# * E275: missing whitespace after keyword
# - added after this code was frozen
PEP8_IGNORE="E123,E203,E501,W503" PEP8_IGNORE="E123,E203,E275,E501,W503"
err() { err() {
echo >&2 ERROR: "$@" echo >&2 ERROR: "$@"