add W504 to flake8-ignore because of some weird error involving W503

This commit is contained in:
Jan Speller 2021-01-06 23:42:51 +01:00
parent d67478690c
commit 9363fc80d5

View file

@ -19,9 +19,10 @@ log_file_format=%(asctime)s - %(module)-12s %(funcName)-15s [%(levelname)-8s] %(
log_file_date_format=%d.%m.%Y %H:%M:%S log_file_date_format=%d.%m.%Y %H:%M:%S
#flake8 plugin #flake8 plugin
flake8-ignore = E402 E501 E722 W605 flake8-ignore = E402 E501 E722 W504 W605
# E402 # import not at top # E402 # import not at top
# E501 # line too long # E501 # line too long
# E722 # do not use bare 'except' # E722 # do not use bare 'except'
# W504 # line break after binary operator
# W605 # invalid escape sequence # W605 # invalid escape sequence
# flake8-max-line-length = 99 # flake8-max-line-length = 99