From f0f7fec79447d73b731238368c4958b690563638 Mon Sep 17 00:00:00 2001 From: Chester Ong Date: Mon, 12 Feb 2024 02:17:01 +0800 Subject: [PATCH] mypy checking of all files in sdk/python folder Signed-off-by: Chester Ong --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6fe0d62f37..fd061cd08c 100644 --- a/Makefile +++ b/Makefile @@ -310,7 +310,7 @@ format-python: cd ${ROOT_DIR}/sdk/python; python -m black --target-version py38 feast tests lint-python: - cd ${ROOT_DIR}/sdk/python; python -m mypy --exclude=/tests/ feast + cd ${ROOT_DIR}/sdk/python; python -m mypy --exclude=/tests/ cd ${ROOT_DIR}/sdk/python; python -m isort feast/ tests/ --check-only cd ${ROOT_DIR}/sdk/python; python -m flake8 feast/ tests/ cd ${ROOT_DIR}/sdk/python; python -m black --check feast tests