updated flake8 to ignore C901 temporary

This commit is contained in:
Lukas Molleman 2022-10-17 22:14:36 +02:00
parent cf935a1915
commit ee9c90d70c
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
[flake8]
ignore = E203, E266, E501, W503, F403, F401, E711
ignore = E203, E266, E501, W503, F403, F401, E711, C901
max-line-length = 79
max-complexity = 18
select = B,C,E,F,W,T4,B9