changes to fix flake8 issues

This commit is contained in:
bharnden 2019-09-10 21:01:51 -07:00
parent 1fc8d647c3
commit dee91e97bf
23 changed files with 51 additions and 1005 deletions

View file

@ -7,10 +7,10 @@ multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=100
line_length=88
[flake8]
ignore=E501
ignore=E501,W503,E203
max-line-length=100
max-complexity=18
select=B,C,E,F,W,T4