diff options
| author | Ben Woosley <[email protected]> | 2019-09-03 14:36:21 -0400 |
|---|---|---|
| committer | Ben Woosley <[email protected]> | 2019-09-03 14:40:56 -0400 |
| commit | 838920704ad90a71cf288b700052503db8abb17e (patch) | |
| tree | 4de1775f52aa4383c252f0576720bc81590d6418 /test/lint/lint-python.sh | |
| parent | test/contrib: Fix invalid escapes in regex strings (diff) | |
| download | discoin-838920704ad90a71cf288b700052503db8abb17e.tar.xz discoin-838920704ad90a71cf288b700052503db8abb17e.zip | |
lint: Disable flake8 W504 warning
In the words of MarcoFalke:
"W504 should be disabled. This is not a critical error that should be blocking a merge"
https://github.com/bitcoin/bitcoin/pull/15257#discussion_r302017280
Diffstat (limited to 'test/lint/lint-python.sh')
| -rwxr-xr-x | test/lint/lint-python.sh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/lint/lint-python.sh b/test/lint/lint-python.sh index a76806003..3c82ec19e 100755 --- a/test/lint/lint-python.sh +++ b/test/lint/lint-python.sh @@ -73,7 +73,6 @@ enabled=( W291 # trailing whitespace W292 # no newline at end of file W293 # blank line contains whitespace - W504 # line break after binary operator W601 # .has_key() is deprecated, use "in" W602 # deprecated form of raising exception W603 # "<>" is deprecated, use "!=" |