get flake8 passing

This commit is contained in:
Andrew Herrington
2021-12-06 18:59:50 -06:00
parent 4d1681ea8e
commit 90233c568e
8 changed files with 85 additions and 26 deletions

View File

@@ -1,7 +1,7 @@
[flake8]
select = B,B9,C,D,DAR,E,F,N,RST,S,W
ignore = E203,E501,RST201,RST203,RST301,W503
max-line-length = 80
ignore = E203,E501,RST201,RST203,RST301,W503,B902,N805
max-line-length = 119
max-complexity = 10
docstring-convention = google
per-file-ignores = tests/*:S101