From 9680fafd3cb9c0d797b392fd7e73e34f7468cea9 Mon Sep 17 00:00:00 2001 From: Luka Peschke Date: Sat, 2 Mar 2024 18:02:24 +0100 Subject: [PATCH] fix(make): adapt to ruff 0.3.0 (#196) Adapt to new ruff params after bump done in #194 Signed-off-by: Luka Peschke --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f7c29fe..5027809 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ # Commands ## Python -ruff = ruff python/ *.py +ruff = ruff check python/ *.py format = ruff format python/ *.py mypy = mypy python/ *.py pytest = pytest -v