From 12fe6e31e78c86fab9b88953c51c19f61c84f038 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bence=20Sz=C3=A9pk=C3=BAti?= Date: Fri, 12 Dec 2025 17:44:05 +0100 Subject: [PATCH] Fix copypasta in check-python-files.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Bence Szépkúti --- scripts/check-python-files.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check-python-files.sh b/scripts/check-python-files.sh index 59e3152aa..83767fc38 100755 --- a/scripts/check-python-files.sh +++ b/scripts/check-python-files.sh @@ -74,7 +74,7 @@ $PYTHON -m mypy framework/scripts/*.py framework/scripts/mbedtls_framework/*.py } $PYTHON -m mypy scripts/*.py tests/scripts/*.py || { - echo >&2 "pylint reported errors in the parent repository" + echo >&2 "mypy reported errors in the parent repository" ret=1 }