diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-17 20:41:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-17 20:41:21 -0400 |
commit | 462cdbe59dc8410b68e413cb6b5902623f16c805 (patch) | |
tree | 677108fc33446585f5e9618b6e9d4f8ce010cd56 /tasks.py | |
parent | b8ab415b9f79a2fd85de182d208a10605d19fac3 (diff) | |
parent | d9728550f0996dc5900a48f5948c1950143e0801 (diff) | |
download | cmd2-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |