summaryrefslogtreecommitdiff
path: root/tasks.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2019-07-17 20:41:21 -0400
committerGitHub <noreply@github.com>2019-07-17 20:41:21 -0400
commit462cdbe59dc8410b68e413cb6b5902623f16c805 (patch)
tree677108fc33446585f5e9618b6e9d4f8ce010cd56 /tasks.py
parentb8ab415b9f79a2fd85de182d208a10605d19fac3 (diff)
parentd9728550f0996dc5900a48f5948c1950143e0801 (diff)
downloadcmd2-git-462cdbe59dc8410b68e413cb6b5902623f16c805.tar.gz
Merge pull request #729 from python-cmd2/multi-completion
Enabled tab completion of multiline commands
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)