summaryrefslogtreecommitdiff
path: root/tasks.py
diff options
context:
space:
mode:
authorChayim <chayim@users.noreply.github.com>2021-10-28 12:46:04 +0300
committerGitHub <noreply@github.com>2021-10-28 12:46:04 +0300
commit8178997e2838d01dafe14dcf0a1d2d6c6a20f051 (patch)
treecc7e65929fdf5f9b30552383cb4b3f2a9c446e8e /tasks.py
parentd8adb8af45248ad4597f47ac871ce69990022046 (diff)
downloadredis-py-8178997e2838d01dafe14dcf0a1d2d6c6a20f051.tar.gz
Adding vulture for static analysis (#1655)
* Adding vulture for static analysis Removing dead code found previously by vulture in local runs.
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 aa965c6..4ca2242 100644
--- a/tasks.py
+++ b/tasks.py
@@ -23,7 +23,7 @@ def devenv(c):
@task
def linters(c):
"""Run code linters"""
- run("flake8")
+ run("tox -e linters")
@task