diff --git a/Makefile b/Makefile index 37c4b0e..e4a093c 100644 --- a/Makefile +++ b/Makefile @@ -31,8 +31,8 @@ safety: ## Check project and dependencies with safety https://github.com/pyupio/ docker-compose run --rm app safety check .PHONY: py-upgrade -py-upgrade: ## Upgrade project py files with pyupgrade library for python version 3.9 - docker-compose run --rm app pyupgrade --py39-plus `find . -name "*.py"` +py-upgrade: ## Upgrade project py files with pyupgrade library for python version 3.10 + pyupgrade --py310-plus `find the_app -name "*.py"` .PHONY: lint lint: ## Lint project code. diff --git a/Pipfile b/Pipfile index cf9f370..ddc5f52 100644 --- a/Pipfile +++ b/Pipfile @@ -16,6 +16,7 @@ eventlet = "*" aioredis = "*" rich = "*" pytest-cov = "*" +pylint = "*" [dev-packages] isort = "*"