Skip to content
Snippets Groups Projects
Unverified Commit 57359bfd authored by Oliver Smith's avatar Oliver Smith
Browse files

CI: flake8: remove ignore for W605


This was for 'invalid escape sequence' (even though the comment has W604
instead of W605). After removing it, flake8 runs through fine. We
probably fixed whatever invalid escape squence we had earlier while
doing f-string related refactoring.

Reviewed-by: default avatarLuca Weiss <luca@z3ntu.xyz>
Link: https://lists.sr.ht/~postmarketos/pmbootstrap-devel/%3C20221028074119.3309-1-ollieparanoid@postmarketos.org%3E
parent 4771fbac
No related branches found
No related tags found
No related merge requests found
......@@ -11,8 +11,7 @@ fi
# E402: module import not on top of file, not possible for testcases
# E722: do not use bare except
# W504: line break occurred after a binary operator
# W604: invalid escape sequence
ign="E402,E722,W504,W605"
ign="E402,E722,W504"
set -x
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment