From b15ff1601c6c4bd893220a9e8e28fd7e3ef6bac5 Mon Sep 17 00:00:00 2001 From: Stefan Hansson Date: Mon, 13 May 2024 16:19:06 +0200 Subject: [PATCH] CI: fix deprecation warning (MR 5126) Fixes this warning: warning: `ruff ` is deprecated. Use `ruff check ` instead: --- .ci/ruff.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/ruff.sh b/.ci/ruff.sh index 12cbbc1b0..d59d64f78 100755 --- a/.ci/ruff.sh +++ b/.ci/ruff.sh @@ -11,4 +11,4 @@ fi set -x # shellcheck disable=SC2046 -ruff --ignore E501,F401,E722,W605 $(find .ci -name '*.py') +ruff check --ignore E501,F401,E722,W605 $(find .ci -name '*.py')