Skip to content

Commit

Permalink
fix: flake8 extended-ignore (#186)
Browse files Browse the repository at this point in the history
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 <tim.orling@konsulko.com>
  • Loading branch information
moto-timo authored Feb 19, 2023
1 parent ac262fe commit c38493c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
[flake8]
max-complexity = 101
max-line-length = 88
extend-ignore = E203 # whitespace before ':' to agree with psf/black
extend-ignore =
# whitespace before ':' to agree with psf/black
E203

0 comments on commit c38493c

Please sign in to comment.