From b11c59c554b1a1612b074d45febdebd635be4309 Mon Sep 17 00:00:00 2001 From: apalala Date: Fri, 10 Nov 2023 11:18:12 -0400 Subject: [PATCH] [make] always update linters --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 90622689..c636f905 100644 --- a/Makefile +++ b/Makefile @@ -26,10 +26,12 @@ lint: ruff mypy ruff: + pip install -U ruff ruff check tatsu test mypy: + pip install -U mypy mypy --ignore-missing-imports . --exclude dist