diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-05-08 15:06:06 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-05-08 15:06:06 -0400 |
commit | 68b03bf4c5e280e3023cf38cfc102ed30cf7c8ca (patch) | |
tree | 39ded6e9f921b1276e789a95ce3b55e6194de8b0 /tasks.py | |
parent | 89b5c20e1cb524502dae1069e3beb1422aedbc45 (diff) | |
download | cmd2-git-68b03bf4c5e280e3023cf38cfc102ed30cf7c8ca.tar.gz |
Fixed flake errors
Diffstat (limited to 'tasks.py')
-rw-r--r-- | tasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -233,5 +233,5 @@ namespace.add_task(pypi_test) @invoke.task def flake8(context): "Run flake8 linter and tool for style guide enforcement" - context.run("flake8 --ignore=E252 --max-complexity=31 --max-line-length=127 --show-source --statistics") + context.run("flake8 --ignore=E252,W503 --max-complexity=31 --max-line-length=127 --show-source --statistics") namespace.add_task(flake8) |