summaryrefslogtreecommitdiff
path: root/tasks.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2019-07-17 19:29:58 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2019-07-17 19:29:58 -0400
commit3a613d3e5d47d906a4d28e09e72a9a492373f61d (patch)
tree0dc08704ed3a0ca0139c4db2eec30e6e88dcfbee /tasks.py
parentd745c773cbb1a135cc30875736ef21cc629f3985 (diff)
downloadcmd2-git-3a613d3e5d47d906a4d28e09e72a9a492373f61d.tar.gz
Reduced complexity of complete()
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 b679e594..f7df006b 100644
--- a/tasks.py
+++ b/tasks.py
@@ -239,5 +239,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,W503 --max-complexity=31 --max-line-length=127 --show-source --statistics --exclude=.git,__pycache__,.tox,.eggs,*.egg,.venv,.idea,.pytest_cache,.vscode,build,dist,htmlcov")
+ context.run("flake8 --ignore=E252,W503 --max-complexity=26 --max-line-length=127 --show-source --statistics --exclude=.git,__pycache__,.tox,.eggs,*.egg,.venv,.idea,.pytest_cache,.vscode,build,dist,htmlcov")
namespace.add_task(flake8)