Remove old pylint script

This commit is contained in:
Markus Frosch 2020-05-01 17:01:34 +02:00
parent e2d9bf482a
commit 4ddd4d6891
1 changed files with 0 additions and 11 deletions

View File

@ -1,11 +0,0 @@
#!/bin/bash
for file in *.py; do
line=$(pylint $file 2>&1 | grep "^Your code has been rated")
rating=$(echo $line | cut -f 7 -d ' ')
previous=$(echo $line | cut -f 10 -d ' ')
if [ "$rating" != "10.00/10" ]; then
echo "$file rated $rating (previously $previous)"
fi
done