Remove old pylint script
This commit is contained in:
parent
e2d9bf482a
commit
4ddd4d6891
|
@ -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
|
Loading…
Reference in New Issue