From b2f9dc3ad072e099654acd224c4ae832bf409bd7 Mon Sep 17 00:00:00 2001 From: asim Date: Tue, 25 Mar 2025 07:43:08 +0530 Subject: [PATCH] fix lint errors Signed-off-by: asim --- libs/community/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/community/Makefile b/libs/community/Makefile index a8e564982..e13eca2ed 100644 --- a/libs/community/Makefile +++ b/libs/community/Makefile @@ -37,7 +37,7 @@ lint lint_diff lint_package lint_tests: poetry run ruff check . poetry run ruff format $(PYTHON_FILES) --diff poetry run ruff check --select I $(PYTHON_FILES) - mkdir $(MYPY_CACHE); poetry run mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE) + mkdir -p $(MYPY_CACHE); poetry run mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE) format format_diff: poetry run ruff format $(PYTHON_FILES)