Minor update

This commit is contained in:
Miroslav Stampar 2019-12-09 11:35:22 +01:00
parent e853508192
commit 7b5a640d1f
2 changed files with 2 additions and 1 deletions

View File

@ -4,4 +4,4 @@
# See the file 'LICENSE' for copying permission # See the file 'LICENSE' for copying permission
# Runs pyflakes on all python files (prerequisite: apt-get install pyflakes) # Runs pyflakes on all python files (prerequisite: apt-get install pyflakes)
find . -wholename "./thirdparty" -prune -o -type f -iname "*.py" -exec pyflakes '{}' \; | grep -v "redefines '_'" find . -wholename "./thirdparty" -prune -o -type f -iname "*.py" -exec pyflakes3 '{}' \; | grep -v "redefines '_'"

View File

@ -19,6 +19,7 @@ import re
import sys import sys
from lib.core.bigarray import BigArray from lib.core.bigarray import BigArray
from lib.core.compat import xrange
from lib.core.data import conf from lib.core.data import conf
from lib.core.data import kb from lib.core.data import kb
from lib.core.settings import INVALID_UNICODE_PRIVATE_AREA from lib.core.settings import INVALID_UNICODE_PRIVATE_AREA