From 1153701a8219fccee66ecf3357f8769b39d8b97d Mon Sep 17 00:00:00 2001 From: Ruben Fonseca Date: Thu, 7 Mar 2024 14:55:31 +0100 Subject: [PATCH] fix(internal): call ruff with correct args --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2c5c3223509..a91464e5f56 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ format: poetry run black aws_lambda_powertools tests examples lint: format - poetry run ruff aws_lambda_powertools tests examples + poetry run ruff check aws_lambda_powertools tests examples lint-docs: docker run -v ${PWD}:/markdown 06kellyjac/markdownlint-cli "docs"