diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-06-27 06:30:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-27 06:30:11 -0700 |
commit | 64f6db1d2d7f73bad8642feff809968e454128df (patch) | |
tree | fa4ce2e7992d31ad1b9ecbe6819aa99b0d998ed5 | |
parent | 4d91bf066f2e285f53b3228a92f23053a94ec4fa (diff) | |
parent | d5cacbf99100e722d265816483c8953d7e81a3b6 (diff) | |
download | cmd2-git-64f6db1d2d7f73bad8642feff809968e454128df.tar.gz |
Merge branch 'master' into table_display
-rw-r--r-- | tasks.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -64,7 +64,7 @@ namespace.add_task(mypy) def mypy_clean(context): "Remove mypy cache directory" #pylint: disable=unused-argument - dirs = ['.mypy_cache'] + dirs = ['.mypy_cache', 'dmypy.json', 'dmypy.sock'] rmrf(dirs) namespace_clean.add_task(mypy_clean, 'mypy') @@ -195,4 +195,3 @@ def pypi_test(context): "Build and upload a distribution to https://test.pypi.org" context.run('twine upload --repository-url https://test.pypi.org/legacy/ dist/*') namespace.add_task(pypi_test) - |