From a8882084d555950175d0d5bcf6b6796bdcc83636 Mon Sep 17 00:00:00 2001 From: Jakub Miazek Date: Sat, 17 Feb 2024 08:40:56 +0100 Subject: [PATCH] wip: add import endpoint --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 210e233..bfa465f 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ safety: ## Check project and dependencies with safety https://github.com/pyupio/ .PHONY: py-upgrade py-upgrade: ## Upgrade project py files with pyupgrade library for python version 3.10 - pyupgrade --py311-plus `find app -name "*.py"` + pyupgrade --py312-plus `find app -name "*.py"` .PHONY: lint lint: ## Lint project code.