summaryrefslogtreecommitdiff
path: root/tasks.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2019-05-08 15:06:06 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2019-05-08 15:06:06 -0400
commit68b03bf4c5e280e3023cf38cfc102ed30cf7c8ca (patch)
tree39ded6e9f921b1276e789a95ce3b55e6194de8b0 /tasks.py
parent89b5c20e1cb524502dae1069e3beb1422aedbc45 (diff)
downloadcmd2-git-68b03bf4c5e280e3023cf38cfc102ed30cf7c8ca.tar.gz
Fixed flake errors
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks.py b/tasks.py
index d5f5976b..4d5a5b64 100644
--- a/tasks.py
+++ b/tasks.py
@@ -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)