python: Ignore code style error E128.

This commit is contained in:
Richard W.M. Jones
2021-03-22 13:19:19 +00:00
parent 6d32773e81
commit 245d1a3d7c

View File

@@ -25,4 +25,8 @@ skip_if_skipped
# (-u is passed to to sort to avoid duplicates in case builddir==srcdir)
files="$(find "$srcdir" . -name '*.py' | sort -u)"
$PYCODESTYLE $files
# Ignore E128 ("continuation line under-indented for visual indent") which
# was broken in
# commit 66a5913462a84399bd9790b736814620371a80f8 ("python: Add type hints")
# and is hard to fix.
$PYCODESTYLE --ignore=E128 $files