Skip to content

Commit

Permalink
correct pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
soutobias committed Nov 8, 2023
1 parent bc187bc commit 3a2a67a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pylint_checking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 3a2a67a

Please sign in to comment.