From 6fb42ecb3fe2b0db81a57f8042b654d6d5b6eb04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Correa=20G=C3=B3mez?= Date: Thu, 29 Jan 2026 15:06:20 +0100 Subject: [PATCH] ci: enable unused-import in ruff MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was not possible to remove while add_pmbootstrap_to_import_path was in use, since that module wasn't actually used, but just imported. As the previous commit shows, this was important to have enabled. Signed-off-by: Pablo Correa Gómez Part-of: --- .ci/ruff.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/ruff.sh b/.ci/ruff.sh index dc1ef698b..be9a4f34a 100755 --- a/.ci/ruff.sh +++ b/.ci/ruff.sh @@ -11,4 +11,4 @@ fi set -x # shellcheck disable=SC2046 -ruff check --ignore F401 $(find .ci -name '*.py') +ruff check $(find .ci -name '*.py')