1
0
Fork 0
mirror of synced 2024-05-03 12:12:56 +12:00

Misc: Use python from virtualenv for pylint.sh script

Signed-off-by: loathingKernel <142770+loathingKernel@users.noreply.github.com>
This commit is contained in:
loathingKernel 2023-01-12 17:24:12 +02:00
parent 0dc1937f1f
commit 0f80f02dc2

View file

@ -3,6 +3,6 @@
cwd="$(pwd)"
cd "$(dirname "$0")"/.. || exit
pylint -E rare --jobs=3 --disable=E0611,E1123,E1120 --ignore=ui,singleton.py --extension-pkg-whitelist=PyQt5
python -m pylint -E rare --jobs=1 --disable=E0611,E1123,E1120 --ignore=ui,singleton.py --extension-pkg-whitelist=PyQt5 --generated-members=PyQt5.*
cd "$cwd" || exit