From 3a2a67a97cbc66f2d2a709edc8dce11cb7989795 Mon Sep 17 00:00:00 2001 From: tobfer Date: Wed, 8 Nov 2023 11:34:39 +0000 Subject: [PATCH] correct pylint --- .github/workflows/pylint_checking.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pylint_checking.yml b/.github/workflows/pylint_checking.yml index 04927992..cedf3ee0 100644 --- a/.github/workflows/pylint_checking.yml +++ b/.github/workflows/pylint_checking.yml @@ -23,7 +23,7 @@ jobs: echo NEW_SCORE=$NEW_SCORE OLD_SCORE=$(cat .pylint-score); OLD_SCORE=$(echo "scale=2; $OLD_SCORE" | bc) - THREESHOLD_SCORE=$((OLD_SCORE - 0.5)) + THREESHOLD_SCORE=$OLD_SCORE; echo THREESHOLD_SCORE=$THREESHOLD_SCORE if [ "$(echo "$NEW_SCORE > $THREESHOLD_SCORE" | bc -l)" -eq 1 ] ; then git config --global user.name "PylintBot"