Skip to content

Commit c38493c

Browse files
authored
fix: flake8 extended-ignore (#186)
Fixes: Error code '#' supplied to 'ignore' option does not match '^[A-Z]{1,3}[0-9]{0,3}$' https://stackoverflow.com/questions/74558565/flake8-error-code-supplied-to-ignore-option-does-not-match-a-z1-30 Signed-off-by: Tim Orling <[email protected]>
1 parent ac262fe commit c38493c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.flake8

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
[flake8]
22
max-complexity = 101
33
max-line-length = 88
4-
extend-ignore = E203 # whitespace before ':' to agree with psf/black
4+
extend-ignore =
5+
# whitespace before ':' to agree with psf/black
6+
E203

0 commit comments

Comments
 (0)