# HG changeset patch # User Drew Perttula # Date 1559457864 0 # Node ID d40a653f2bfdecf74f742ce802f7e12b1acc3e3e # Parent b4beb35bc45428ec130fa7e31fdecd8fca662728 turn off flake8 warnings for some things the autoformatter is doing Ignore-this: 6a2536eb57b5e52bc3616955b31d50e9 diff -r b4beb35bc454 -r d40a653f2bfd tasks.py --- a/tasks.py Sun Jun 02 06:44:20 2019 +0000 +++ b/tasks.py Sun Jun 02 06:44:24 2019 +0000 @@ -37,7 +37,7 @@ pty=True, warn=True) sources = ' '.join(bin_sources + pkg_sources()) - ctx.run(f'env/bin/flake8 --ignore=E115,E123,E124,E126,E225,E231,E261,E262,E265,E301,E302,E303,E305,E306,E401,E402,E501,E701,E731,W291,W293,W391,W504 {sources}', warn=True) + ctx.run(f'env/bin/flake8 --ignore=E115,E123,E124,E126,E225,E231,E261,E262,E265,E301,E302,E303,E305,E306,E401,E402,E501,E701,E731,W291,W293,W391,W504,E131,E125 {sources}', warn=True) sources = ' '.join(pkg_sources()) run(['bin/collector'])