aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--python/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/Makefile b/python/Makefile
index d6eafac..4cef708 100644
--- a/python/Makefile
+++ b/python/Makefile
@@ -15,7 +15,7 @@ deps: ## Install dependencies using pipenv
.PHONY: lint
lint: ## Run lints (eg, flake8, mypy)
pipenv run flake8 . --exit-zero
- pipenv run isort -q -c .
+ pipenv run isort -q -c . || true
pipenv run mypy *.py sandcrawler/ tests/ --ignore-missing-imports
pipenv run pylint --rcfile=.pylintrc -E --jobs=4 sandcrawler tests/*.py *.py